Skip to content

Conversation

lubieowoce
Copy link
Member

@lubieowoce lubieowoce commented Sep 22, 2025

This PR replaces the previous approach to the dev-time cache warmup. On full-page requests, we

  1. We attempt an initial RSC render. It uses a RequestStore, but includes a cacheSignal and a prerenderResumeDataCache to be filled
  2. if there's no cache misses, we use the RSC render as is, and move onto SSR
  3. If there's any cache misses in the static stage (i.e. during the first timeout), we treat the inital render as a prospective render, use it only for filling caches, and discard the result
  4. Once caches are filled, we render RSC again (using a fresh RequestStore, with a filled renderResumeDataCache), and use this second stream for SSR instead.

With this strategy, we minimize the amount of work we need to do for cache warming -- once caches for a page are filled, we can render it in one go, with no separate cache-filling render necessary.


A lot of the effort here goes into trying to reflect the behavior of a static prerender into what we do during a dynamic render -- if something would be a dynamic hole (hanging promise) in a prerender, we shouldn't resolve it microtaskily (in the static stage). Instead, we have to delay it into a future timeout (the dynamic stage). In this PR, we're still using makeDevtoolsIOAwarePromise for this (i.e. just new Promise((resolve) => setTimeout(resolve))), though this will change to a more precise mechanism in #84644.
The timing of when promises resolve is currently tested in cache-components.dev-warmup.test.ts, where we check the environment labels on the server logs replayed in the browser, and use that to verify which "phase" (Static/Dynamic) a given API resolves in.

This will be the foundation for prefetch validation, where we'll need to snapshot what was rendered in each stage (Static/Runtime/Dynamic) and use that to validate whether a prefetch would result in an instant navigation.

Note that there's currently a bug involving params and searchParams -- they can currently incorrectly resolve in the static phase (because those promises are created before we start the actual render). We're not (yet) relying on the timing of these promises for anything critical, so it's fine to leave it for now. This bug will be addressed in #84644, where I introduce a more precise mechanism for controlling the timing of promise resolution, which also lets us separate "runtime" APIs like cookies into a separate phase.


I've also left the current spawnDynamicValidationInDev codepath as is, so after the we're done with all the render restarting, we'll still kick off a validation prerender. This will also change in the future (and could be optimized -- we've already ensured that all the caches are filled, so we could e.g. skip the prospective render there) but I'm trying not to do everything at once.

@ijjk ijjk added created-by: Next.js team PRs by the Next.js team. type: next labels Sep 22, 2025
Copy link
Member Author

lubieowoce commented Sep 22, 2025

@lubieowoce lubieowoce changed the title wip [Cache Components] dev - restart on cache miss Sep 22, 2025
@lubieowoce lubieowoce added the CI Bypass Graphite Optimization Ignore Graphite CI optimizations, run the full CI suite. https://graphite.dev/docs/stacking-and-ci label Sep 22, 2025
@lubieowoce lubieowoce changed the title [Cache Components] dev - restart on cache miss [Cache Components] restart render on cache miss in dev Sep 22, 2025
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch from 32ee993 to 8d54aeb Compare September 22, 2025 15:51
@ijjk
Copy link
Member

ijjk commented Sep 22, 2025

Failing test suites

Commit: 06765ee | About building and testing Next.js

pnpm test-start-turbo test/e2e/app-dir/ppr-partial-hydration/ppr-partial-hydration.test.ts (turbopack)

  • PPR - partial hydration > No static shell, no streaming metadata > should hydrate the shell without waiting for slow suspense boundaries (DD)
  • PPR - partial hydration > No static shell, streaming metadata > should hydrate the shell without waiting for slow suspense boundaries (DD)
Expand output

● PPR - partial hydration › No static shell, no streaming metadata › should hydrate the shell without waiting for slow suspense boundaries

page.waitForSelector: Timeout 10ms exceeded.
Call log:
  - waiting for locator('#shell-hydrated') to be visible
  -   locator resolved to visible <div id="shell-hydrated" data-is-hydrated="true">🟢 Hydrated</div>

  511 |
  512 |     return this.startChain(async () => {
> 513 |       const el = await page.waitForSelector(selector, {
      |                             ^
  514 |         timeout,
  515 |         state,
  516 |       })

  at waitForSelector (lib/browsers/playwright.ts:513:29)
  at Playwright._chain (lib/browsers/playwright.ts:643:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:624:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:512:17)
  at Playwright.waitForElementByCss (lib/browsers/playwright.ts:405:17)
  at elementByCssInstant (e2e/app-dir/ppr-partial-hydration/ppr-partial-hydration.test.ts:72:14)
  at fn (lib/next-test-utils.ts:808:20)
  at Object.<anonymous> (e2e/app-dir/ppr-partial-hydration/ppr-partial-hydration.test.ts:68:7)
  at Proxy._chain (lib/browsers/playwright.ts:643:23)
  at Proxy._chain (lib/browsers/playwright.ts:619:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:447:17)
  at getAttribute (e2e/app-dir/ppr-partial-hydration/ppr-partial-hydration.test.ts:73:14)
  at fn (lib/next-test-utils.ts:808:20)
  at Object.<anonymous> (e2e/app-dir/ppr-partial-hydration/ppr-partial-hydration.test.ts:68:7)

● PPR - partial hydration › No static shell, streaming metadata › should hydrate the shell without waiting for slow suspense boundaries

page.waitForSelector: Timeout 10ms exceeded.
Call log:
  - waiting for locator('#dynamic-fallback') to be visible

  511 |
  512 |     return this.startChain(async () => {
> 513 |       const el = await page.waitForSelector(selector, {
      |                             ^
  514 |         timeout,
  515 |         state,
  516 |       })

  at waitForSelector (lib/browsers/playwright.ts:513:29)
  at Playwright._chain (lib/browsers/playwright.ts:643:23)
  at Playwright._chain [as startChain] (lib/browsers/playwright.ts:624:17)
  at Playwright.startChain [as waitForElementByCss] (lib/browsers/playwright.ts:512:17)
  at Playwright.waitForElementByCss (lib/browsers/playwright.ts:405:17)
  at elementByCssInstant (e2e/app-dir/ppr-partial-hydration/ppr-partial-hydration.test.ts:60:27)
  at retry (lib/next-test-utils.ts:808:14)
  at Object.<anonymous> (e2e/app-dir/ppr-partial-hydration/ppr-partial-hydration.test.ts:48:7)
  at Proxy._chain (lib/browsers/playwright.ts:643:23)
  at Proxy._chain (lib/browsers/playwright.ts:619:17)
  at Proxy.continueChain (lib/browsers/playwright.ts:425:17)
  at text (e2e/app-dir/ppr-partial-hydration/ppr-partial-hydration.test.ts:60:68)
  at retry (lib/next-test-utils.ts:808:14)
  at Object.<anonymous> (e2e/app-dir/ppr-partial-hydration/ppr-partial-hydration.test.ts:48:7)

pnpm test-dev test/e2e/app-dir/use-cache-hanging-inputs/use-cache-hanging-inputs.test.ts

  • use-cache-hanging-inputs > when a "use cache" function is closing over an uncached promise > should show an error toast after a timeout (DD)
  • use-cache-hanging-inputs > when an error is thrown > should show an error overlay with only one error (DD)
  • use-cache-hanging-inputs > when an uncached promise is used inside of "use cache" > should show an error toast after a timeout (DD)
  • use-cache-hanging-inputs > when an uncached promise is used inside of a nested "use cache" > should show an error toast after a timeout (DD)
Expand output

● use-cache-hanging-inputs › when an uncached promise is used inside of "use cache" › should show an error toast after a timeout

next dev exited unexpectedly with code/signal 1

  91 |           if (code || signal) {
  92 |             this.childProcess = undefined
> 93 |             const error = new Error(
     |                           ^
  94 |               `next dev exited unexpectedly with code/signal ${code || signal}`
  95 |             )
  96 |             clearTimeout(serverReadyTimeoutId)

  at ChildProcess.<anonymous> (lib/next-modes/next-dev.ts:93:27)

● use-cache-hanging-inputs › when an uncached promise is used inside of a nested "use cache" › should show an error toast after a timeout

next dev exited unexpectedly with code/signal 1

  91 |           if (code || signal) {
  92 |             this.childProcess = undefined
> 93 |             const error = new Error(
     |                           ^
  94 |               `next dev exited unexpectedly with code/signal ${code || signal}`
  95 |             )
  96 |             clearTimeout(serverReadyTimeoutId)

  at ChildProcess.<anonymous> (lib/next-modes/next-dev.ts:93:27)

● use-cache-hanging-inputs › when a "use cache" function is closing over an uncached promise › should show an error toast after a timeout

next dev exited unexpectedly with code/signal 1

  91 |           if (code || signal) {
  92 |             this.childProcess = undefined
> 93 |             const error = new Error(
     |                           ^
  94 |               `next dev exited unexpectedly with code/signal ${code || signal}`
  95 |             )
  96 |             clearTimeout(serverReadyTimeoutId)

  at ChildProcess.<anonymous> (lib/next-modes/next-dev.ts:93:27)

● use-cache-hanging-inputs › when an error is thrown › should show an error overlay with only one error

next dev exited unexpectedly with code/signal 1

  91 |           if (code || signal) {
  92 |             this.childProcess = undefined
> 93 |             const error = new Error(
     |                           ^
  94 |               `next dev exited unexpectedly with code/signal ${code || signal}`
  95 |             )
  96 |             clearTimeout(serverReadyTimeoutId)

  at ChildProcess.<anonymous> (lib/next-modes/next-dev.ts:93:27)

pnpm test-start test/e2e/app-dir/app-prefetch/prefetching.test.ts

  • app dir - prefetching > should show layout eagerly when prefetched with loading one level down (DD)
  • app dir - prefetching > should immediately render the loading state for a dynamic segment when fetched from higher up in the tree (DD)
Expand output

● app dir - prefetching › should show layout eagerly when prefetched with loading one level down

thrown: "Exceeded timeout of 120000 ms for a test.
Add a timeout value to this test to increase the timeout, if this is a long-running test. See https://jestjs.io/docs/api#testname-fn-timeout."

  26 |   })
  27 |
> 28 |   it('should show layout eagerly when prefetched with loading one level down', async () => {
     |   ^
  29 |     let act: ReturnType<typeof createRouterAct>
  30 |     const timeController = createTimeController()
  31 |     const browser = await next.browser('/', {

  at it (e2e/app-dir/app-prefetch/prefetching.test.ts:28:3)
  at Object.describe (e2e/app-dir/app-prefetch/prefetching.test.ts:11:1)

● app dir - prefetching › should immediately render the loading state for a dynamic segment when fetched from higher up in the tree

thrown: "Exceeded timeout of 120000 ms for a test.
Add a timeout value to this test to increase the timeout, if this is a long-running test. See https://jestjs.io/docs/api#testname-fn-timeout."

  302 |   })
  303 |
> 304 |   it('should immediately render the loading state for a dynamic segment when fetched from higher up in the tree', async () => {
      |   ^
  305 |     let act: ReturnType<typeof createRouterAct>
  306 |     const browser = await next.browser('/', {
  307 |       beforePageLoad(page) {

  at it (e2e/app-dir/app-prefetch/prefetching.test.ts:304:3)
  at Object.describe (e2e/app-dir/app-prefetch/prefetching.test.ts:11:1)

pnpm test-start-turbo test/e2e/opentelemetry/instrumentation/opentelemetry.test.ts (turbopack)

  • opentelemetry > incoming context propagation > app router > should handle RSC with fetch (DD)
  • opentelemetry > incoming context propagation > app router > should propagate custom context without span (DD)
  • opentelemetry > incoming context propagation > app router > should handle RSC with fetch on edge (DD)
  • opentelemetry > incoming context propagation > app router > should trace middleware (DD)
  • opentelemetry > incoming context propagation > app router > should handle error in RSC (DD)
  • opentelemetry > root context > app router > should handle RSC with fetch (DD)
  • opentelemetry > root context > app router > should propagate custom context without span (DD)
  • opentelemetry > root context > app router > should handle RSC with fetch on edge (DD)
  • opentelemetry > root context > app router > should trace middleware (DD)
  • opentelemetry > root context > app router > should handle error in RSC (DD)
  • opentelemetry with disabled fetch tracing > root context > app router with disabled fetch > should handle RSC with disabled fetch (DD)
Expand output

● opentelemetry › root context › app router › should handle RSC with fetch

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  - 40
+ Received  + 92

@@ -1,145 +1,197 @@
  Array [
    Object {
      "attributes": Object {
-       "http.method": "GET",
-       "http.route": "/app/[param]/rsc-fetch",
-       "http.status_code": 200,
-       "http.target": "/app/param/rsc-fetch",
-       "next.route": "/app/[param]/rsc-fetch",
-       "next.rsc": false,
-       "next.span_name": "GET /app/[param]/rsc-fetch",
-       "next.span_type": "BaseServer.handleRequest",
-     },
-     "kind": 1,
-     "name": "GET /app/[param]/rsc-fetch",
-     "parentId": undefined,
-     "spans": Array [
-       Object {
-         "attributes": Object {
-           "next.route": "/app/[param]/rsc-fetch",
-           "next.span_name": "render route (app) /app/[param]/rsc-fetch",
-           "next.span_type": "AppRender.getBodyResult",
-         },
-         "kind": 0,
-         "name": "render route (app) /app/[param]/rsc-fetch",
-         "spans": Array [
-           Object {
-             "attributes": Object {
        "next.span_name": "build component tree",
        "next.span_type": "NextNodeServer.createComponentTree",
      },
+     "events": Array [],
+     "id": "e85ad7f2f1877490",
      "kind": 0,
+     "links": Array [],
      "name": "build component tree",
+     "parentId": "40f894f951b8f902",
+     "runtime": "nodejs",
      "spans": Array [
        Object {
          "attributes": Object {
            "next.segment": "__PAGE__",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "cda41ef486b8d4ec",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "e85ad7f2f1877490",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "[trace-id]",
        },
        Object {
          "attributes": Object {
            "next.segment": "[param]",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "8ac2d9263d6b368c",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "e85ad7f2f1877490",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "[trace-id]",
        },
      ],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
        "http.method": "GET",
        "http.url": "https://example.vercel.sh/",
        "net.peer.name": "example.vercel.sh",
        "next.span_name": "fetch GET https://example.vercel.sh/",
        "next.span_type": "AppRender.fetch",
      },
+     "events": Array [],
+     "id": "193ab6a424c58576",
      "kind": 2,
+     "links": Array [],
      "name": "fetch GET https://example.vercel.sh/",
+     "parentId": "40f894f951b8f902",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/layout",
        "next.span_name": "generateMetadata /app/[param]/layout",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "812d2579ae88c016",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/layout",
+     "parentId": "40f894f951b8f902",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/rsc-fetch/page",
        "next.span_name": "generateMetadata /app/[param]/rsc-fetch/page",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "ea3b358bd83abb39",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/rsc-fetch/page",
+     "parentId": "40f894f951b8f902",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
-               "next.clientComponentLoadCount": 6,
-               "next.span_type": "NextNodeServer.clientComponentLoading",
-             },
-             "kind": 0,
-             "name": "NextNodeServer.clientComponentLoading",
-             "status": Object {
-               "code": 0,
-             },
+       "http.method": "GET",
+       "http.route": "/app/[param]/rsc-fetch",
+       "http.status_code": 200,
+       "http.target": "/app/param/rsc-fetch",
+       "next.route": "/app/[param]/rsc-fetch",
+       "next.rsc": false,
+       "next.span_name": "GET /app/[param]/rsc-fetch",
+       "next.span_type": "BaseServer.handleRequest",
      },
+     "events": Array [],
+     "id": "6cfddd8642c8f07e",
+     "kind": 1,
+     "links": Array [],
+     "name": "GET /app/[param]/rsc-fetch",
+     "parentId": undefined,
+     "runtime": "nodejs",
+     "spans": Array [
        Object {
          "attributes": Object {
-               "next.span_name": "start response",
-               "next.span_type": "NextNodeServer.startResponse",
+           "next.route": "/app/[param]/rsc-fetch",
+           "next.span_name": "resolve page components",
+           "next.span_type": "NextNodeServer.findPageComponents",
          },
+         "events": Array [],
+         "id": "ac2fb11c90116599",
          "kind": 0,
-             "name": "start response",
+         "links": Array [],
+         "name": "resolve page components",
+         "parentId": "6cfddd8642c8f07e",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "[trace-id]",
        },
      ],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
-           "next.route": "/app/[param]/rsc-fetch",
-           "next.span_name": "resolve page components",
-           "next.span_type": "NextNodeServer.findPageComponents",
+       "next.clientComponentLoadCount": 6,
+       "next.span_type": "NextNodeServer.clientComponentLoading",
      },
+     "events": Array [],
+     "id": "1e7e93554e1d9fae",
      "kind": 0,
-         "name": "resolve page components",
+     "links": Array [],
+     "name": "NextNodeServer.clientComponentLoading",
+     "parentId": "40f894f951b8f902",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
-     ],
+   Object {
+     "attributes": Object {
+       "next.span_name": "start response",
+       "next.span_type": "NextNodeServer.startResponse",
+     },
+     "events": Array [],
+     "id": "33e68a03875192d9",
+     "kind": 0,
+     "links": Array [],
+     "name": "start response",
+     "parentId": "40f894f951b8f902",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
      "traceId": "[trace-id]",
    },

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:73:11)

● opentelemetry › root context › app router › should propagate custom context without span

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  -   0
+ Received  + 200

  Array [
    Object {
      "attributes": Object {
        "custom": "custom1",
+       "next.span_name": "build component tree",
+       "next.span_type": "NextNodeServer.createComponentTree",
+     },
+     "events": Array [],
+     "id": "3101d894a134b535",
+     "kind": 0,
+     "links": Array [],
+     "name": "build component tree",
+     "parentId": "71d3cb3c0a84769b",
+     "runtime": "nodejs",
+     "spans": Array [
+       Object {
+         "attributes": Object {
+           "custom": "custom1",
+           "next.segment": "__PAGE__",
+           "next.span_name": "resolve segment modules",
+           "next.span_type": "NextNodeServer.getLayoutOrPageModule",
+         },
+         "events": Array [],
+         "id": "3081f5cbe9b6f2a7",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve segment modules",
+         "parentId": "3101d894a134b535",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "[trace-id]",
+       },
+       Object {
+         "attributes": Object {
+           "custom": "custom1",
+           "next.segment": "[param]",
+           "next.span_name": "resolve segment modules",
+           "next.span_type": "NextNodeServer.getLayoutOrPageModule",
+         },
+         "events": Array [],
+         "id": "5fe9099f8ab63ce8",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve segment modules",
+         "parentId": "3101d894a134b535",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "[trace-id]",
+       },
+     ],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "http.method": "GET",
+       "http.url": "https://example.vercel.sh/",
+       "net.peer.name": "example.vercel.sh",
+       "next.span_name": "fetch GET https://example.vercel.sh/",
+       "next.span_type": "AppRender.fetch",
+     },
+     "events": Array [],
+     "id": "e8258a62f0d6c3e2",
+     "kind": 2,
+     "links": Array [],
+     "name": "fetch GET https://example.vercel.sh/",
+     "parentId": "71d3cb3c0a84769b",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "next.page": "/app/[param]/layout",
+       "next.span_name": "generateMetadata /app/[param]/layout",
+       "next.span_type": "ResolveMetadata.generateMetadata",
+     },
+     "events": Array [],
+     "id": "5ed6768c9445fa74",
+     "kind": 0,
+     "links": Array [],
+     "name": "generateMetadata /app/[param]/layout",
+     "parentId": "71d3cb3c0a84769b",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "next.page": "/app/[param]/rsc-fetch/page",
+       "next.span_name": "generateMetadata /app/[param]/rsc-fetch/page",
+       "next.span_type": "ResolveMetadata.generateMetadata",
+     },
+     "events": Array [],
+     "id": "810bd897b494a343",
+     "kind": 0,
+     "links": Array [],
+     "name": "generateMetadata /app/[param]/rsc-fetch/page",
+     "parentId": "71d3cb3c0a84769b",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
      },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "http.method": "GET",
+       "http.route": "/app/[param]/rsc-fetch",
+       "http.status_code": 200,
+       "http.target": "/app/param/rsc-fetch",
+       "next.route": "/app/[param]/rsc-fetch",
+       "next.rsc": false,
+       "next.span_name": "GET /app/[param]/rsc-fetch",
+       "next.span_type": "BaseServer.handleRequest",
+     },
+     "events": Array [],
+     "id": "59e6a213f016a3cf",
+     "kind": 1,
+     "links": Array [],
      "name": "GET /app/[param]/rsc-fetch",
+     "parentId": undefined,
+     "runtime": "nodejs",
+     "spans": Array [
+       Object {
+         "attributes": Object {
+           "custom": "custom1",
+           "next.route": "/app/[param]/rsc-fetch",
+           "next.span_name": "resolve page components",
+           "next.span_type": "NextNodeServer.findPageComponents",
+         },
+         "events": Array [],
+         "id": "d950b73036e7cb08",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve page components",
+         "parentId": "59e6a213f016a3cf",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "[trace-id]",
+       },
+     ],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "next.clientComponentLoadCount": 6,
+       "next.span_type": "NextNodeServer.clientComponentLoading",
+     },
+     "events": Array [],
+     "id": "c83209ecffc3ba86",
+     "kind": 0,
+     "links": Array [],
+     "name": "NextNodeServer.clientComponentLoading",
+     "parentId": "71d3cb3c0a84769b",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "next.span_name": "start response",
+       "next.span_type": "NextNodeServer.startResponse",
+     },
+     "events": Array [],
+     "id": "4a9282fe74f8cd15",
+     "kind": 0,
+     "links": Array [],
+     "name": "start response",
+     "parentId": "71d3cb3c0a84769b",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
    },
  ]

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:214:11)

● opentelemetry › root context › app router › should handle RSC with fetch on edge

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  - 29
+ Received  + 59

@@ -1,111 +1,141 @@
  Array [
    Object {
      "attributes": Object {
-       "http.method": "GET",
-       "http.route": "/app/[param]/rsc-fetch/edge",
-       "http.status_code": 200,
-       "http.target": "/app/param/rsc-fetch/edge?param=param",
-       "next.route": "/app/[param]/rsc-fetch/edge",
-       "next.span_name": "GET /app/[param]/rsc-fetch/edge",
-       "next.span_type": "BaseServer.handleRequest",
-     },
-     "kind": 1,
-     "name": "GET /app/[param]/rsc-fetch/edge",
-     "parentId": undefined,
-     "runtime": "edge",
-     "spans": Array [
-       Object {
-         "attributes": Object {
-           "next.route": "/app/[param]/rsc-fetch/edge",
-           "next.span_name": "render route (app) /app/[param]/rsc-fetch/edge",
-           "next.span_type": "AppRender.getBodyResult",
-         },
-         "kind": 0,
-         "name": "render route (app) /app/[param]/rsc-fetch/edge",
-         "spans": Array [
-           Object {
-             "attributes": Object {
        "next.span_name": "build component tree",
        "next.span_type": "NextNodeServer.createComponentTree",
      },
+     "events": Array [],
+     "id": "522e46fa11a2ad2b",
      "kind": 0,
+     "links": Array [],
      "name": "build component tree",
+     "parentId": "61a8c5ee81a41fae",
+     "runtime": "edge",
      "spans": Array [
        Object {
          "attributes": Object {
            "next.segment": "__PAGE__",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "2821e6f8b010dd52",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "522e46fa11a2ad2b",
+         "runtime": "edge",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "[trace-id]",
        },
        Object {
          "attributes": Object {
            "next.segment": "[param]",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "dd0fd56a6d733c7f",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "522e46fa11a2ad2b",
+         "runtime": "edge",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "[trace-id]",
        },
      ],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
        "http.method": "GET",
        "http.url": "https://example.vercel.sh/",
        "net.peer.name": "example.vercel.sh",
        "next.span_name": "fetch GET https://example.vercel.sh/",
        "next.span_type": "AppRender.fetch",
      },
+     "events": Array [],
+     "id": "922707a27899611c",
      "kind": 2,
+     "links": Array [],
      "name": "fetch GET https://example.vercel.sh/",
+     "parentId": "61a8c5ee81a41fae",
+     "runtime": "edge",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/layout",
        "next.span_name": "generateMetadata /app/[param]/layout",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "fe2fc6ee2ddeaa21",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/layout",
+     "parentId": "61a8c5ee81a41fae",
+     "runtime": "edge",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/rsc-fetch/edge/page",
        "next.span_name": "generateMetadata /app/[param]/rsc-fetch/edge/page",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "a7052f9ffc54f3a2",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/rsc-fetch/edge/page",
+     "parentId": "61a8c5ee81a41fae",
+     "runtime": "edge",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
-         ],
-         "status": Object {
-           "code": 0,
+   Object {
+     "attributes": Object {
+       "http.method": "GET",
+       "http.route": "/app/[param]/rsc-fetch/edge",
+       "http.status_code": 200,
+       "http.target": "/app/param/rsc-fetch/edge?param=param",
+       "next.route": "/app/[param]/rsc-fetch/edge",
+       "next.rsc": false,
+       "next.span_name": "GET /app/[param]/rsc-fetch/edge",
+       "next.span_type": "BaseServer.handleRequest",
      },
-       },
-     ],
+     "events": Array [],
+     "id": "2e458c430e40c6cf",
+     "kind": 1,
+     "links": Array [],
+     "name": "GET /app/[param]/rsc-fetch/edge",
+     "parentId": undefined,
+     "runtime": "edge",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
      "traceId": "[trace-id]",
    },

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:227:11)

● opentelemetry › root context › app router › should trace middleware

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  -   0
+ Received  + 164

@@ -4,13 +4,112 @@
        "http.method": "GET",
        "http.target": "/behind-middleware",
        "next.span_name": "middleware GET",
        "next.span_type": "Middleware.execute",
      },
+     "events": Array [],
+     "id": "662d4fed1eb55ab9",
+     "kind": 0,
+     "links": Array [],
      "name": "middleware GET",
      "parentId": undefined,
      "runtime": "edge",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "next.span_name": "build component tree",
+       "next.span_type": "NextNodeServer.createComponentTree",
+     },
+     "events": Array [],
+     "id": "e50147aaac6e1aea",
+     "kind": 0,
+     "links": Array [],
+     "name": "build component tree",
+     "parentId": "0c1db9b43c17ce58",
+     "runtime": "nodejs",
+     "spans": Array [
+       Object {
+         "attributes": Object {
+           "next.segment": "__PAGE__",
+           "next.span_name": "resolve segment modules",
+           "next.span_type": "NextNodeServer.getLayoutOrPageModule",
+         },
+         "events": Array [],
+         "id": "7e3387424539a92d",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve segment modules",
+         "parentId": "e50147aaac6e1aea",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "[trace-id]",
+       },
+       Object {
+         "attributes": Object {
+           "next.segment": "behind-middleware",
+           "next.span_name": "resolve segment modules",
+           "next.span_type": "NextNodeServer.getLayoutOrPageModule",
+         },
+         "events": Array [],
+         "id": "729f9a77ade3fee6",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve segment modules",
+         "parentId": "e50147aaac6e1aea",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "[trace-id]",
+       },
+     ],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "next.page": "/behind-middleware/layout",
+       "next.span_name": "generateMetadata /behind-middleware/layout",
+       "next.span_type": "ResolveMetadata.generateMetadata",
+     },
+     "events": Array [],
+     "id": "ab40cd2000a88bdd",
+     "kind": 0,
+     "links": Array [],
+     "name": "generateMetadata /behind-middleware/layout",
+     "parentId": "0c1db9b43c17ce58",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "next.page": "/behind-middleware/page",
+       "next.span_name": "generateMetadata /behind-middleware/page",
+       "next.span_type": "ResolveMetadata.generateMetadata",
+     },
+     "events": Array [],
+     "id": "be8ce62a1140715e",
+     "kind": 0,
+     "links": Array [],
+     "name": "generateMetadata /behind-middleware/page",
+     "parentId": "0c1db9b43c17ce58",
+     "runtime": "nodejs",
      "spans": Array [],
      "status": Object {
        "code": 0,
      },
      "traceId": "[trace-id]",
@@ -20,14 +119,79 @@
        "http.method": "GET",
        "http.route": "/behind-middleware",
        "http.status_code": 200,
        "http.target": "/behind-middleware",
        "next.route": "/behind-middleware",
+       "next.rsc": false,
        "next.span_name": "GET /behind-middleware",
        "next.span_type": "BaseServer.handleRequest",
      },
+     "events": Array [],
+     "id": "ec57de25815c484d",
+     "kind": 1,
+     "links": Array [],
      "name": "GET /behind-middleware",
      "parentId": undefined,
      "runtime": "nodejs",
+     "spans": Array [
+       Object {
+         "attributes": Object {
+           "next.route": "/behind-middleware",
+           "next.span_name": "resolve page components",
+           "next.span_type": "NextNodeServer.findPageComponents",
+         },
+         "events": Array [],
+         "id": "ca7a05521c7810fe",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve page components",
+         "parentId": "ec57de25815c484d",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "[trace-id]",
+       },
+     ],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "next.clientComponentLoadCount": 6,
+       "next.span_type": "NextNodeServer.clientComponentLoading",
+     },
+     "events": Array [],
+     "id": "317df2c201b1230a",
+     "kind": 0,
+     "links": Array [],
+     "name": "NextNodeServer.clientComponentLoading",
+     "parentId": "0c1db9b43c17ce58",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "next.span_name": "start response",
+       "next.span_type": "NextNodeServer.startResponse",
+     },
+     "events": Array [],
+     "id": "e5a3ef70b5bb3ec3",
+     "kind": 0,
+     "links": Array [],
+     "name": "start response",
+     "parentId": "0c1db9b43c17ce58",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
      "traceId": "[trace-id]",
    },
  ]

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:450:11)

● opentelemetry › root context › app router › should handle error in RSC

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  - 42
+ Received  + 87

  Array [
    Object {
      "attributes": Object {
-       "error.type": "500",
-       "http.method": "GET",
-       "http.route": "/app/[param]/rsc-fetch/error",
-       "http.status_code": 500,
-       "http.target": "/app/param/rsc-fetch/error?status=error",
-       "next.route": "/app/[param]/rsc-fetch/error",
-       "next.rsc": false,
-       "next.span_name": "GET /app/[param]/rsc-fetch/error",
-       "next.span_type": "BaseServer.handleRequest",
-     },
-     "kind": 1,
-     "name": "GET /app/[param]/rsc-fetch/error",
-     "parentId": undefined,
-     "spans": Array [
-       Object {
-         "attributes": Object {
-           "next.route": "/app/[param]/rsc-fetch/error",
-           "next.span_name": "render route (app) /app/[param]/rsc-fetch/error",
-           "next.span_type": "AppRender.getBodyResult",
-         },
-         "kind": 0,
-         "name": "render route (app) /app/[param]/rsc-fetch/error",
-         "spans": Array [
-           Object {
-             "attributes": Object {
        "next.span_name": "build component tree",
        "next.span_type": "NextNodeServer.createComponentTree",
      },
+     "events": Array [],
+     "id": "f869801683713f32",
      "kind": 0,
+     "links": Array [],
      "name": "build component tree",
+     "parentId": "1129a6f8e20e96c4",
+     "runtime": "nodejs",
      "spans": Array [
        Object {
          "attributes": Object {
            "next.segment": "__PAGE__",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "3ec6b6bed684a9ec",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "f869801683713f32",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "[trace-id]",
        },
        Object {
          "attributes": Object {
            "next.segment": "[param]",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "7fe52a091e1719c5",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "f869801683713f32",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "[trace-id]",
        },
      ],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/layout",
        "next.span_name": "generateMetadata /app/[param]/layout",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "a1074c92968863c2",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/layout",
+     "parentId": "1129a6f8e20e96c4",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/layout",
        "next.span_name": "generateMetadata /app/[param]/layout",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "46f04ee294ee4889",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/layout",
+     "parentId": "1129a6f8e20e96c4",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
-               "next.clientComponentLoadCount": 8,
-               "next.span_type": "NextNodeServer.clientComponentLoading",
-             },
-             "kind": 0,
-             "name": "NextNodeServer.clientComponentLoading",
-             "status": Object {
-               "code": 0,
-             },
+       "error.type": "500",
+       "http.method": "GET",
+       "http.route": "/app/[param]/rsc-fetch/error",
+       "http.status_code": 500,
+       "http.target": "/app/param/rsc-fetch/error?status=error",
+       "next.route": "/app/[param]/rsc-fetch/error",
+       "next.rsc": false,
+       "next.span_name": "GET /app/[param]/rsc-fetch/error",
+       "next.span_type": "BaseServer.handleRequest",
      },
+     "events": Array [],
+     "id": "08f72070ca48d186",
+     "kind": 1,
+     "links": Array [],
+     "name": "GET /app/[param]/rsc-fetch/error",
+     "parentId": undefined,
+     "runtime": "nodejs",
+     "spans": Array [
        Object {
          "attributes": Object {
-               "next.span_name": "start response",
-               "next.span_type": "NextNodeServer.startResponse",
+           "next.route": "/app/[param]/rsc-fetch/error",
+           "next.span_name": "resolve page components",
+           "next.span_type": "NextNodeServer.findPageComponents",
          },
+         "events": Array [],
+         "id": "fc06dee791321a93",
          "kind": 0,
-             "name": "start response",
+         "links": Array [],
+         "name": "resolve page components",
+         "parentId": "08f72070ca48d186",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "[trace-id]",
        },
      ],
      "status": Object {
        "code": 2,
      },
+     "traceId": "[trace-id]",
    },
    Object {
      "attributes": Object {
-           "next.route": "/app/[param]/rsc-fetch/error",
-           "next.span_name": "resolve page components",
-           "next.span_type": "NextNodeServer.findPageComponents",
+       "next.clientComponentLoadCount": 8,
+       "next.span_type": "NextNodeServer.clientComponentLoading",
      },
+     "events": Array [],
+     "id": "0add8c0ea262ef1d",
      "kind": 0,
-         "name": "resolve page components",
+     "links": Array [],
+     "name": "NextNodeServer.clientComponentLoading",
+     "parentId": "1129a6f8e20e96c4",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "[trace-id]",
    },
-     ],
+   Object {
+     "attributes": Object {
+       "next.span_name": "start response",
+       "next.span_type": "NextNodeServer.startResponse",
+     },
+     "events": Array [],
+     "id": "2bb801f32671c332",
+     "kind": 0,
+     "links": Array [],
+     "name": "start response",
+     "parentId": "1129a6f8e20e96c4",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
-       "code": 2,
+       "code": 0,
      },
      "traceId": "[trace-id]",
    },
  ]

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:490:11)

● opentelemetry › incoming context propagation › app router › should handle RSC with fetch

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  - 40
+ Received  + 92

@@ -1,145 +1,197 @@
  Array [
    Object {
      "attributes": Object {
-       "http.method": "GET",
-       "http.route": "/app/[param]/rsc-fetch",
-       "http.status_code": 200,
-       "http.target": "/app/param/rsc-fetch",
-       "next.route": "/app/[param]/rsc-fetch",
-       "next.rsc": false,
-       "next.span_name": "GET /app/[param]/rsc-fetch",
-       "next.span_type": "BaseServer.handleRequest",
-     },
-     "kind": 1,
-     "name": "GET /app/[param]/rsc-fetch",
-     "parentId": "0f6a325411bdc432",
-     "spans": Array [
-       Object {
-         "attributes": Object {
-           "next.route": "/app/[param]/rsc-fetch",
-           "next.span_name": "render route (app) /app/[param]/rsc-fetch",
-           "next.span_type": "AppRender.getBodyResult",
-         },
-         "kind": 0,
-         "name": "render route (app) /app/[param]/rsc-fetch",
-         "spans": Array [
-           Object {
-             "attributes": Object {
        "next.span_name": "build component tree",
        "next.span_type": "NextNodeServer.createComponentTree",
      },
+     "events": Array [],
+     "id": "0e7d080342a0af94",
      "kind": 0,
+     "links": Array [],
      "name": "build component tree",
+     "parentId": "8948a69c86deea3b",
+     "runtime": "nodejs",
      "spans": Array [
        Object {
          "attributes": Object {
            "next.segment": "__PAGE__",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "ce496a988bde0dd3",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "0e7d080342a0af94",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
        },
        Object {
          "attributes": Object {
            "next.segment": "[param]",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "2e12e4c5ac3a4d81",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "0e7d080342a0af94",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
        },
      ],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
        "http.method": "GET",
        "http.url": "https://example.vercel.sh/",
        "net.peer.name": "example.vercel.sh",
        "next.span_name": "fetch GET https://example.vercel.sh/",
        "next.span_type": "AppRender.fetch",
      },
+     "events": Array [],
+     "id": "819b7588386f2e64",
      "kind": 2,
+     "links": Array [],
      "name": "fetch GET https://example.vercel.sh/",
+     "parentId": "8948a69c86deea3b",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/layout",
        "next.span_name": "generateMetadata /app/[param]/layout",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "528647d6d09c7374",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/layout",
+     "parentId": "8948a69c86deea3b",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/rsc-fetch/page",
        "next.span_name": "generateMetadata /app/[param]/rsc-fetch/page",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "aece72598393d3fb",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/rsc-fetch/page",
+     "parentId": "8948a69c86deea3b",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
-               "next.clientComponentLoadCount": 6,
-               "next.span_type": "NextNodeServer.clientComponentLoading",
-             },
-             "kind": 0,
-             "name": "NextNodeServer.clientComponentLoading",
-             "status": Object {
-               "code": 0,
-             },
+       "http.method": "GET",
+       "http.route": "/app/[param]/rsc-fetch",
+       "http.status_code": 200,
+       "http.target": "/app/param/rsc-fetch",
+       "next.route": "/app/[param]/rsc-fetch",
+       "next.rsc": false,
+       "next.span_name": "GET /app/[param]/rsc-fetch",
+       "next.span_type": "BaseServer.handleRequest",
      },
+     "events": Array [],
+     "id": "b195b719d923e5b8",
+     "kind": 1,
+     "links": Array [],
+     "name": "GET /app/[param]/rsc-fetch",
+     "parentId": "0f6a325411bdc432",
+     "runtime": "nodejs",
+     "spans": Array [
        Object {
          "attributes": Object {
-               "next.span_name": "start response",
-               "next.span_type": "NextNodeServer.startResponse",
+           "next.route": "/app/[param]/rsc-fetch",
+           "next.span_name": "resolve page components",
+           "next.span_type": "NextNodeServer.findPageComponents",
          },
+         "events": Array [],
+         "id": "d529097b1257b03c",
          "kind": 0,
-             "name": "start response",
+         "links": Array [],
+         "name": "resolve page components",
+         "parentId": "b195b719d923e5b8",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
        },
      ],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
-           "next.route": "/app/[param]/rsc-fetch",
-           "next.span_name": "resolve page components",
-           "next.span_type": "NextNodeServer.findPageComponents",
+       "next.clientComponentLoadCount": 6,
+       "next.span_type": "NextNodeServer.clientComponentLoading",
      },
+     "events": Array [],
+     "id": "6c4cb23631a4784f",
      "kind": 0,
-         "name": "resolve page components",
+     "links": Array [],
+     "name": "NextNodeServer.clientComponentLoading",
+     "parentId": "8948a69c86deea3b",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
-     ],
+   Object {
+     "attributes": Object {
+       "next.span_name": "start response",
+       "next.span_type": "NextNodeServer.startResponse",
+     },
+     "events": Array [],
+     "id": "0d122c407a3a75e9",
+     "kind": 0,
+     "links": Array [],
+     "name": "start response",
+     "parentId": "8948a69c86deea3b",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
      "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:73:11)

● opentelemetry › incoming context propagation › app router › should propagate custom context without span

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  -   0
+ Received  + 200

  Array [
    Object {
      "attributes": Object {
        "custom": "custom1",
+       "next.span_name": "build component tree",
+       "next.span_type": "NextNodeServer.createComponentTree",
+     },
+     "events": Array [],
+     "id": "8de0cd99ef2d1a72",
+     "kind": 0,
+     "links": Array [],
+     "name": "build component tree",
+     "parentId": "1af624ee5bd42e64",
+     "runtime": "nodejs",
+     "spans": Array [
+       Object {
+         "attributes": Object {
+           "custom": "custom1",
+           "next.segment": "__PAGE__",
+           "next.span_name": "resolve segment modules",
+           "next.span_type": "NextNodeServer.getLayoutOrPageModule",
+         },
+         "events": Array [],
+         "id": "5b97c644e6f00a35",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve segment modules",
+         "parentId": "8de0cd99ef2d1a72",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+       },
+       Object {
+         "attributes": Object {
+           "custom": "custom1",
+           "next.segment": "[param]",
+           "next.span_name": "resolve segment modules",
+           "next.span_type": "NextNodeServer.getLayoutOrPageModule",
+         },
+         "events": Array [],
+         "id": "de07dd79a7c7272d",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve segment modules",
+         "parentId": "8de0cd99ef2d1a72",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+       },
+     ],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "http.method": "GET",
+       "http.url": "https://example.vercel.sh/",
+       "net.peer.name": "example.vercel.sh",
+       "next.span_name": "fetch GET https://example.vercel.sh/",
+       "next.span_type": "AppRender.fetch",
+     },
+     "events": Array [],
+     "id": "cd42f8e0639ec890",
+     "kind": 2,
+     "links": Array [],
+     "name": "fetch GET https://example.vercel.sh/",
+     "parentId": "1af624ee5bd42e64",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "next.page": "/app/[param]/layout",
+       "next.span_name": "generateMetadata /app/[param]/layout",
+       "next.span_type": "ResolveMetadata.generateMetadata",
+     },
+     "events": Array [],
+     "id": "a63dfa1133df03ec",
+     "kind": 0,
+     "links": Array [],
+     "name": "generateMetadata /app/[param]/layout",
+     "parentId": "1af624ee5bd42e64",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "next.page": "/app/[param]/rsc-fetch/page",
+       "next.span_name": "generateMetadata /app/[param]/rsc-fetch/page",
+       "next.span_type": "ResolveMetadata.generateMetadata",
+     },
+     "events": Array [],
+     "id": "78fcdddacd27b30c",
+     "kind": 0,
+     "links": Array [],
+     "name": "generateMetadata /app/[param]/rsc-fetch/page",
+     "parentId": "1af624ee5bd42e64",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "http.method": "GET",
+       "http.route": "/app/[param]/rsc-fetch",
+       "http.status_code": 200,
+       "http.target": "/app/param/rsc-fetch",
+       "next.route": "/app/[param]/rsc-fetch",
+       "next.rsc": false,
+       "next.span_name": "GET /app/[param]/rsc-fetch",
+       "next.span_type": "BaseServer.handleRequest",
+     },
+     "events": Array [],
+     "id": "386714f3814e34d4",
+     "kind": 1,
+     "links": Array [],
      "name": "GET /app/[param]/rsc-fetch",
+     "parentId": "0f6a325411bdc432",
+     "runtime": "nodejs",
+     "spans": Array [
+       Object {
+         "attributes": Object {
+           "custom": "custom1",
+           "next.route": "/app/[param]/rsc-fetch",
+           "next.span_name": "resolve page components",
+           "next.span_type": "NextNodeServer.findPageComponents",
+         },
+         "events": Array [],
+         "id": "1ee50d4f731423d9",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve page components",
+         "parentId": "386714f3814e34d4",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+       },
+     ],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "next.clientComponentLoadCount": 6,
+       "next.span_type": "NextNodeServer.clientComponentLoading",
+     },
+     "events": Array [],
+     "id": "2275a6463133d170",
+     "kind": 0,
+     "links": Array [],
+     "name": "NextNodeServer.clientComponentLoading",
+     "parentId": "1af624ee5bd42e64",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "custom": "custom1",
+       "next.span_name": "start response",
+       "next.span_type": "NextNodeServer.startResponse",
+     },
+     "events": Array [],
+     "id": "aa4f663fab0dfb98",
+     "kind": 0,
+     "links": Array [],
+     "name": "start response",
+     "parentId": "1af624ee5bd42e64",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
  ]

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:214:11)

● opentelemetry › incoming context propagation › app router › should handle RSC with fetch on edge

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  - 29
+ Received  + 59

@@ -1,111 +1,141 @@
  Array [
    Object {
      "attributes": Object {
-       "http.method": "GET",
-       "http.route": "/app/[param]/rsc-fetch/edge",
-       "http.status_code": 200,
-       "http.target": "/app/param/rsc-fetch/edge?param=param",
-       "next.route": "/app/[param]/rsc-fetch/edge",
-       "next.span_name": "GET /app/[param]/rsc-fetch/edge",
-       "next.span_type": "BaseServer.handleRequest",
-     },
-     "kind": 1,
-     "name": "GET /app/[param]/rsc-fetch/edge",
-     "parentId": "0f6a325411bdc432",
-     "runtime": "edge",
-     "spans": Array [
-       Object {
-         "attributes": Object {
-           "next.route": "/app/[param]/rsc-fetch/edge",
-           "next.span_name": "render route (app) /app/[param]/rsc-fetch/edge",
-           "next.span_type": "AppRender.getBodyResult",
-         },
-         "kind": 0,
-         "name": "render route (app) /app/[param]/rsc-fetch/edge",
-         "spans": Array [
-           Object {
-             "attributes": Object {
        "next.span_name": "build component tree",
        "next.span_type": "NextNodeServer.createComponentTree",
      },
+     "events": Array [],
+     "id": "1b4b5dfb7f6967bf",
      "kind": 0,
+     "links": Array [],
      "name": "build component tree",
+     "parentId": "7a484461ed224a5c",
+     "runtime": "edge",
      "spans": Array [
        Object {
          "attributes": Object {
            "next.segment": "__PAGE__",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "83d372a62de9e3db",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "1b4b5dfb7f6967bf",
+         "runtime": "edge",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
        },
        Object {
          "attributes": Object {
            "next.segment": "[param]",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "8e9d1a28c537f83e",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "1b4b5dfb7f6967bf",
+         "runtime": "edge",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
        },
      ],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
        "http.method": "GET",
        "http.url": "https://example.vercel.sh/",
        "net.peer.name": "example.vercel.sh",
        "next.span_name": "fetch GET https://example.vercel.sh/",
        "next.span_type": "AppRender.fetch",
      },
+     "events": Array [],
+     "id": "10d9bca474915863",
      "kind": 2,
+     "links": Array [],
      "name": "fetch GET https://example.vercel.sh/",
+     "parentId": "7a484461ed224a5c",
+     "runtime": "edge",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/layout",
        "next.span_name": "generateMetadata /app/[param]/layout",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "7f876ff766edb974",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/layout",
+     "parentId": "7a484461ed224a5c",
+     "runtime": "edge",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/rsc-fetch/edge/page",
        "next.span_name": "generateMetadata /app/[param]/rsc-fetch/edge/page",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "8192a1e26fd275c0",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/rsc-fetch/edge/page",
+     "parentId": "7a484461ed224a5c",
+     "runtime": "edge",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
-         ],
-         "status": Object {
-           "code": 0,
+   Object {
+     "attributes": Object {
+       "http.method": "GET",
+       "http.route": "/app/[param]/rsc-fetch/edge",
+       "http.status_code": 200,
+       "http.target": "/app/param/rsc-fetch/edge?param=param",
+       "next.route": "/app/[param]/rsc-fetch/edge",
+       "next.rsc": false,
+       "next.span_name": "GET /app/[param]/rsc-fetch/edge",
+       "next.span_type": "BaseServer.handleRequest",
      },
-       },
-     ],
+     "events": Array [],
+     "id": "b7d0b68249c34fac",
+     "kind": 1,
+     "links": Array [],
+     "name": "GET /app/[param]/rsc-fetch/edge",
+     "parentId": "0f6a325411bdc432",
+     "runtime": "edge",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
      "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:227:11)

● opentelemetry › incoming context propagation › app router › should trace middleware

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  -   0
+ Received  + 164

@@ -4,13 +4,112 @@
        "http.method": "GET",
        "http.target": "/behind-middleware",
        "next.span_name": "middleware GET",
        "next.span_type": "Middleware.execute",
      },
+     "events": Array [],
+     "id": "cfcdc056b005416e",
+     "kind": 0,
+     "links": Array [],
      "name": "middleware GET",
      "parentId": "0f6a325411bdc432",
      "runtime": "edge",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "next.span_name": "build component tree",
+       "next.span_type": "NextNodeServer.createComponentTree",
+     },
+     "events": Array [],
+     "id": "60106d643bf19f01",
+     "kind": 0,
+     "links": Array [],
+     "name": "build component tree",
+     "parentId": "429a05235a9a24b5",
+     "runtime": "nodejs",
+     "spans": Array [
+       Object {
+         "attributes": Object {
+           "next.segment": "__PAGE__",
+           "next.span_name": "resolve segment modules",
+           "next.span_type": "NextNodeServer.getLayoutOrPageModule",
+         },
+         "events": Array [],
+         "id": "98adbc17741b7118",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve segment modules",
+         "parentId": "60106d643bf19f01",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+       },
+       Object {
+         "attributes": Object {
+           "next.segment": "behind-middleware",
+           "next.span_name": "resolve segment modules",
+           "next.span_type": "NextNodeServer.getLayoutOrPageModule",
+         },
+         "events": Array [],
+         "id": "f3d2c7506087d551",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve segment modules",
+         "parentId": "60106d643bf19f01",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+       },
+     ],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "next.page": "/behind-middleware/layout",
+       "next.span_name": "generateMetadata /behind-middleware/layout",
+       "next.span_type": "ResolveMetadata.generateMetadata",
+     },
+     "events": Array [],
+     "id": "840fc4d1f83f5610",
+     "kind": 0,
+     "links": Array [],
+     "name": "generateMetadata /behind-middleware/layout",
+     "parentId": "429a05235a9a24b5",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "next.page": "/behind-middleware/page",
+       "next.span_name": "generateMetadata /behind-middleware/page",
+       "next.span_type": "ResolveMetadata.generateMetadata",
+     },
+     "events": Array [],
+     "id": "b44a5b90988de9a9",
+     "kind": 0,
+     "links": Array [],
+     "name": "generateMetadata /behind-middleware/page",
+     "parentId": "429a05235a9a24b5",
+     "runtime": "nodejs",
      "spans": Array [],
      "status": Object {
        "code": 0,
      },
      "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
@@ -20,14 +119,79 @@
        "http.method": "GET",
        "http.route": "/behind-middleware",
        "http.status_code": 200,
        "http.target": "/behind-middleware",
        "next.route": "/behind-middleware",
+       "next.rsc": false,
        "next.span_name": "GET /behind-middleware",
        "next.span_type": "BaseServer.handleRequest",
      },
+     "events": Array [],
+     "id": "ff95a589800b559c",
+     "kind": 1,
+     "links": Array [],
      "name": "GET /behind-middleware",
      "parentId": "0f6a325411bdc432",
      "runtime": "nodejs",
+     "spans": Array [
+       Object {
+         "attributes": Object {
+           "next.route": "/behind-middleware",
+           "next.span_name": "resolve page components",
+           "next.span_type": "NextNodeServer.findPageComponents",
+         },
+         "events": Array [],
+         "id": "91dfa9dc428336a6",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve page components",
+         "parentId": "ff95a589800b559c",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+       },
+     ],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "next.clientComponentLoadCount": 6,
+       "next.span_type": "NextNodeServer.clientComponentLoading",
+     },
+     "events": Array [],
+     "id": "1bd96d44317cc042",
+     "kind": 0,
+     "links": Array [],
+     "name": "NextNodeServer.clientComponentLoading",
+     "parentId": "429a05235a9a24b5",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
+   },
+   Object {
+     "attributes": Object {
+       "next.span_name": "start response",
+       "next.span_type": "NextNodeServer.startResponse",
+     },
+     "events": Array [],
+     "id": "b229333d0bc5c642",
+     "kind": 0,
+     "links": Array [],
+     "name": "start response",
+     "parentId": "429a05235a9a24b5",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
      "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
  ]

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:450:11)

● opentelemetry › incoming context propagation › app router › should handle error in RSC

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  - 42
+ Received  + 87

  Array [
    Object {
      "attributes": Object {
-       "error.type": "500",
-       "http.method": "GET",
-       "http.route": "/app/[param]/rsc-fetch/error",
-       "http.status_code": 500,
-       "http.target": "/app/param/rsc-fetch/error?status=error",
-       "next.route": "/app/[param]/rsc-fetch/error",
-       "next.rsc": false,
-       "next.span_name": "GET /app/[param]/rsc-fetch/error",
-       "next.span_type": "BaseServer.handleRequest",
-     },
-     "kind": 1,
-     "name": "GET /app/[param]/rsc-fetch/error",
-     "parentId": "0f6a325411bdc432",
-     "spans": Array [
-       Object {
-         "attributes": Object {
-           "next.route": "/app/[param]/rsc-fetch/error",
-           "next.span_name": "render route (app) /app/[param]/rsc-fetch/error",
-           "next.span_type": "AppRender.getBodyResult",
-         },
-         "kind": 0,
-         "name": "render route (app) /app/[param]/rsc-fetch/error",
-         "spans": Array [
-           Object {
-             "attributes": Object {
        "next.span_name": "build component tree",
        "next.span_type": "NextNodeServer.createComponentTree",
      },
+     "events": Array [],
+     "id": "c4334d50c32dcef8",
      "kind": 0,
+     "links": Array [],
      "name": "build component tree",
+     "parentId": "1747d1517b041bbf",
+     "runtime": "nodejs",
      "spans": Array [
        Object {
          "attributes": Object {
            "next.segment": "__PAGE__",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "c7788deeff90b63c",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "c4334d50c32dcef8",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
        },
        Object {
          "attributes": Object {
            "next.segment": "[param]",
            "next.span_name": "resolve segment modules",
            "next.span_type": "NextNodeServer.getLayoutOrPageModule",
          },
+         "events": Array [],
+         "id": "16c9ca2326de51e6",
          "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "c4334d50c32dcef8",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
        },
      ],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/layout",
        "next.span_name": "generateMetadata /app/[param]/layout",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "c0ab43f049cc24ed",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/layout",
+     "parentId": "1747d1517b041bbf",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
        "next.page": "/app/[param]/layout",
        "next.span_name": "generateMetadata /app/[param]/layout",
        "next.span_type": "ResolveMetadata.generateMetadata",
      },
+     "events": Array [],
+     "id": "fa00a2e6e6e370aa",
      "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/layout",
+     "parentId": "1747d1517b041bbf",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
-               "next.clientComponentLoadCount": 8,
-               "next.span_type": "NextNodeServer.clientComponentLoading",
-             },
-             "kind": 0,
-             "name": "NextNodeServer.clientComponentLoading",
-             "status": Object {
-               "code": 0,
-             },
+       "error.type": "500",
+       "http.method": "GET",
+       "http.route": "/app/[param]/rsc-fetch/error",
+       "http.status_code": 500,
+       "http.target": "/app/param/rsc-fetch/error?status=error",
+       "next.route": "/app/[param]/rsc-fetch/error",
+       "next.rsc": false,
+       "next.span_name": "GET /app/[param]/rsc-fetch/error",
+       "next.span_type": "BaseServer.handleRequest",
      },
+     "events": Array [],
+     "id": "c61811d98d1a24f4",
+     "kind": 1,
+     "links": Array [],
+     "name": "GET /app/[param]/rsc-fetch/error",
+     "parentId": "0f6a325411bdc432",
+     "runtime": "nodejs",
+     "spans": Array [
        Object {
          "attributes": Object {
-               "next.span_name": "start response",
-               "next.span_type": "NextNodeServer.startResponse",
+           "next.route": "/app/[param]/rsc-fetch/error",
+           "next.span_name": "resolve page components",
+           "next.span_type": "NextNodeServer.findPageComponents",
          },
+         "events": Array [],
+         "id": "0c5ad08eb3d55665",
          "kind": 0,
-             "name": "start response",
+         "links": Array [],
+         "name": "resolve page components",
+         "parentId": "c61811d98d1a24f4",
+         "runtime": "nodejs",
+         "spans": Array [],
          "status": Object {
            "code": 0,
          },
+         "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
        },
      ],
      "status": Object {
        "code": 2,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
    Object {
      "attributes": Object {
-           "next.route": "/app/[param]/rsc-fetch/error",
-           "next.span_name": "resolve page components",
-           "next.span_type": "NextNodeServer.findPageComponents",
+       "next.clientComponentLoadCount": 8,
+       "next.span_type": "NextNodeServer.clientComponentLoading",
      },
+     "events": Array [],
+     "id": "48ccb4c8c079c872",
      "kind": 0,
-         "name": "resolve page components",
+     "links": Array [],
+     "name": "NextNodeServer.clientComponentLoading",
+     "parentId": "1747d1517b041bbf",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
        "code": 0,
      },
+     "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
-     ],
+   Object {
+     "attributes": Object {
+       "next.span_name": "start response",
+       "next.span_type": "NextNodeServer.startResponse",
+     },
+     "events": Array [],
+     "id": "9d1f5d03b1d6c994",
+     "kind": 0,
+     "links": Array [],
+     "name": "start response",
+     "parentId": "1747d1517b041bbf",
+     "runtime": "nodejs",
+     "spans": Array [],
      "status": Object {
-       "code": 2,
+       "code": 0,
      },
      "traceId": "ee75cd9e534ff5e9ed78b4a0c706f0f2",
    },
  ]

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:490:11)

● opentelemetry with disabled fetch tracing › root context › app router with disabled fetch › should handle RSC with disabled fetch

TIMED OUT: success

undefined

Error: expect(received).toMatchObject(expected)

- Expected  -  11
+ Received  + 148

  Array [
    Object {
-     "name": "GET /app/[param]/rsc-fetch",
-     "parentId": undefined,
-     "spans": Array [
-       Object {
-         "name": "render route (app) /app/[param]/rsc-fetch",
-         "spans": Array [
-           Object {
+     "attributes": Object {
+       "next.span_name": "build component tree",
+       "next.span_type": "NextNodeServer.createComponentTree",
+     },
+     "events": Array [],
+     "id": "cd569fb8df0fa4cc",
+     "kind": 0,
+     "links": Array [],
      "name": "build component tree",
+     "parentId": "65271a84747af0bd",
+     "runtime": "nodejs",
      "spans": Array [
        Object {
+         "attributes": Object {
+           "next.segment": "__PAGE__",
+           "next.span_name": "resolve segment modules",
+           "next.span_type": "NextNodeServer.getLayoutOrPageModule",
+         },
+         "events": Array [],
+         "id": "df95bf187058cab6",
+         "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "cd569fb8df0fa4cc",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "[trace-id]",
        },
        Object {
+         "attributes": Object {
+           "next.segment": "[param]",
+           "next.span_name": "resolve segment modules",
+           "next.span_type": "NextNodeServer.getLayoutOrPageModule",
+         },
+         "events": Array [],
+         "id": "a751776af4ef7b19",
+         "kind": 0,
+         "links": Array [],
          "name": "resolve segment modules",
+         "parentId": "cd569fb8df0fa4cc",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "[trace-id]",
        },
      ],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
    },
    Object {
+     "attributes": Object {
+       "next.page": "/app/[param]/layout",
+       "next.span_name": "generateMetadata /app/[param]/layout",
+       "next.span_type": "ResolveMetadata.generateMetadata",
+     },
+     "events": Array [],
+     "id": "66182f931ff13a13",
+     "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/layout",
+     "parentId": "65271a84747af0bd",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
    },
    Object {
+     "attributes": Object {
+       "next.page": "/app/[param]/rsc-fetch/page",
+       "next.span_name": "generateMetadata /app/[param]/rsc-fetch/page",
+       "next.span_type": "ResolveMetadata.generateMetadata",
+     },
+     "events": Array [],
+     "id": "f1064b11e42f2815",
+     "kind": 0,
+     "links": Array [],
      "name": "generateMetadata /app/[param]/rsc-fetch/page",
+     "parentId": "65271a84747af0bd",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
      },
+     "traceId": "[trace-id]",
+   },
    Object {
-             "name": "NextNodeServer.clientComponentLoading",
+     "attributes": Object {
+       "http.method": "GET",
+       "http.route": "/app/[param]/rsc-fetch",
+       "http.status_code": 200,
+       "http.target": "/app/param/rsc-fetch",
+       "next.route": "/app/[param]/rsc-fetch",
+       "next.rsc": false,
+       "next.span_name": "GET /app/[param]/rsc-fetch",
+       "next.span_type": "BaseServer.handleRequest",
      },
+     "events": Array [],
+     "id": "920d5412d62ad536",
+     "kind": 1,
+     "links": Array [],
+     "name": "GET /app/[param]/rsc-fetch",
+     "parentId": undefined,
+     "runtime": "nodejs",
+     "spans": Array [
        Object {
-             "name": "start response",
+         "attributes": Object {
+           "next.route": "/app/[param]/rsc-fetch",
+           "next.span_name": "resolve page components",
+           "next.span_type": "NextNodeServer.findPageComponents",
+         },
+         "events": Array [],
+         "id": "68ccf7c74fb16ee2",
+         "kind": 0,
+         "links": Array [],
+         "name": "resolve page components",
+         "parentId": "920d5412d62ad536",
+         "runtime": "nodejs",
+         "spans": Array [],
+         "status": Object {
+           "code": 0,
+         },
+         "traceId": "[trace-id]",
        },
      ],
+     "status": Object {
+       "code": 0,
      },
+     "traceId": "[trace-id]",
+   },
    Object {
-         "name": "resolve page components",
+     "attributes": Object {
+       "next.clientComponentLoadCount": 6,
+       "next.span_type": "NextNodeServer.clientComponentLoading",
+     },
+     "events": Array [],
+     "id": "570b81bfa5933a33",
+     "kind": 0,
+     "links": Array [],
+     "name": "NextNodeServer.clientComponentLoading",
+     "parentId": "65271a84747af0bd",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
+     },
+     "traceId": "[trace-id]",
+   },
+   Object {
+     "attributes": Object {
+       "next.span_name": "start response",
+       "next.span_type": "NextNodeServer.startResponse",
+     },
+     "events": Array [],
+     "id": "63f26aedeb27a2d9",
+     "kind": 0,
+     "links": Array [],
+     "name": "start response",
+     "parentId": "65271a84747af0bd",
+     "runtime": "nodejs",
+     "spans": Array [],
+     "status": Object {
+       "code": 0,
      },
-     ],
      "traceId": "[trace-id]",
    },
  ]

  733 |
  734 |   if (hardError) {
> 735 |     throw new Error('TIMED OUT: ' + regex + '\n\n' + content + '\n\n' + lastErr)
      |           ^
  736 |   }
  737 |   return false
  738 | }

  at check (lib/next-test-utils.ts:735:11)
  at expectTrace (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1120:3)
  at Object.<anonymous> (e2e/opentelemetry/instrumentation/opentelemetry.test.ts:1067:9)

@ijjk
Copy link
Member

ijjk commented Sep 22, 2025

Stats from current PR

Default Build (Increase detected ⚠️)
General Overall increase ⚠️
vercel/next.js canary vercel/next.js lubieowoce/restart-on-cache-miss Change
buildDuration 34.2s 28.7s N/A
buildDurationCached 28.9s 22s N/A
nodeModulesSize 448 MB 449 MB ⚠️ +229 kB
nextStartRea..uration (ms) 674ms 718ms N/A
Client Bundles (main, webpack)
vercel/next.js canary vercel/next.js lubieowoce/restart-on-cache-miss Change
1916.HASH.js gzip 169 B 169 B
4498-HASH.js gzip 54 kB 53.7 kB N/A
9225-HASH.js gzip 5.19 kB 5.18 kB N/A
c57d0559-HASH.js gzip 62 kB 62 kB N/A
framework-HASH.js gzip 59.8 kB 59.8 kB
main-app-HASH.js gzip 257 B 257 B
main-HASH.js gzip 37.1 kB 37 kB N/A
webpack-HASH.js gzip 1.69 kB 1.69 kB N/A
Overall change 60.2 kB 60.2 kB
Legacy Client Bundles (polyfills)
vercel/next.js canary vercel/next.js lubieowoce/restart-on-cache-miss Change
polyfills-HASH.js gzip 39.4 kB 39.4 kB
Overall change 39.4 kB 39.4 kB
Client Pages
vercel/next.js canary vercel/next.js lubieowoce/restart-on-cache-miss Change
_app-HASH.js gzip 193 B 193 B
_error-HASH.js gzip 182 B 182 B
css-HASH.js gzip 334 B 334 B
dynamic-HASH.js gzip 1.8 kB 1.8 kB N/A
edge-ssr-HASH.js gzip 256 B 255 B N/A
head-HASH.js gzip 350 B 352 B N/A
hooks-HASH.js gzip 384 B 381 B N/A
image-HASH.js gzip 4.67 kB 4.66 kB N/A
index-HASH.js gzip 259 B 260 B N/A
link-HASH.js gzip 2.5 kB 2.51 kB N/A
routerDirect..HASH.js gzip 318 B 317 B N/A
script-HASH.js gzip 386 B 386 B
withRouter-HASH.js gzip 315 B 315 B
1afbb74e6ecf..834.css gzip 106 B 106 B
Overall change 1.52 kB 1.52 kB
Client Build Manifests
vercel/next.js canary vercel/next.js lubieowoce/restart-on-cache-miss Change
_buildManifest.js gzip 715 B 721 B N/A
Overall change 0 B 0 B
Rendered Page Sizes
vercel/next.js canary vercel/next.js lubieowoce/restart-on-cache-miss Change
index.html gzip 523 B 523 B
link.html gzip 537 B 536 B N/A
withRouter.html gzip 519 B 518 B N/A
Overall change 523 B 523 B
Edge SSR bundle Size Overall increase ⚠️
vercel/next.js canary vercel/next.js lubieowoce/restart-on-cache-miss Change
edge-ssr.js gzip 125 kB 125 kB N/A
page.js gzip 254 kB 254 kB ⚠️ +335 B
Overall change 254 kB 254 kB ⚠️ +335 B
Middleware size
vercel/next.js canary vercel/next.js lubieowoce/restart-on-cache-miss Change
middleware-b..fest.js gzip 638 B 642 B N/A
middleware-r..fest.js gzip 156 B 157 B N/A
middleware.js gzip 33.1 kB 32.8 kB N/A
edge-runtime..pack.js gzip 846 B 846 B
Overall change 846 B 846 B
Next Runtimes Overall increase ⚠️
vercel/next.js canary vercel/next.js lubieowoce/restart-on-cache-miss Change
app-page-exp...dev.js gzip 289 kB 289 kB N/A
app-page-exp..prod.js gzip 159 kB 158 kB N/A
app-page-tur...dev.js gzip 289 kB 289 kB N/A
app-page-tur..prod.js gzip 159 kB 158 kB N/A
app-page-tur...dev.js gzip 285 kB 285 kB N/A
app-page-tur..prod.js gzip 156 kB 156 kB N/A
app-page.run...dev.js gzip 285 kB 285 kB N/A
app-page.run..prod.js gzip 156 kB 156 kB N/A
app-route-ex...dev.js gzip 66.5 kB 66.7 kB ⚠️ +138 B
app-route-ex..prod.js gzip 46 kB 46 kB N/A
app-route-tu...dev.js gzip 66.6 kB 66.7 kB ⚠️ +138 B
app-route-tu..prod.js gzip 46 kB 46 kB N/A
app-route-tu...dev.js gzip 66.1 kB 66.3 kB ⚠️ +129 B
app-route-tu..prod.js gzip 45.8 kB 45.8 kB N/A
app-route.ru...dev.js gzip 66.1 kB 66.2 kB ⚠️ +131 B
app-route.ru..prod.js gzip 45.7 kB 45.8 kB N/A
dist_client_...dev.js gzip 326 B 326 B
dist_client_...dev.js gzip 328 B 328 B
dist_client_...dev.js gzip 320 B 320 B
dist_client_...dev.js gzip 318 B 318 B
pages-api-tu...dev.js gzip 39.5 kB 39.5 kB
pages-api-tu..prod.js gzip 29.8 kB 29.8 kB
pages-api.ru...dev.js gzip 39.4 kB 39.4 kB N/A
pages-api.ru..prod.js gzip 29.7 kB 29.7 kB
pages-turbo....dev.js gzip 49.2 kB 49.2 kB
pages-turbo...prod.js gzip 36.9 kB 36.9 kB
pages.runtim...dev.js gzip 49.2 kB 49.2 kB N/A
pages.runtim..prod.js gzip 36.8 kB 36.8 kB
server.runti..prod.js gzip 75.9 kB 75.9 kB
Overall change 564 kB 565 kB ⚠️ +536 B
build cache
vercel/next.js canary vercel/next.js lubieowoce/restart-on-cache-miss Change
0.pack gzip 3.09 MB 3.09 MB N/A
index.pack gzip 92.4 kB 92.3 kB N/A
Overall change 0 B 0 B
Diff details
Diff for page.js

Diff too large to display

Diff for middleware.js

Diff too large to display

Diff for edge-ssr.js
failed to diff
Diff for css-HASH.js
@@ -1,7 +1,31 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [9813],
   {
-    /***/ 3593: /***/ (
+    /***/ 5832: /***/ (module) => {
+      // extracted by mini-css-extract-plugin
+      module.exports = { helloWorld: "css_helloWorld__aUdUq" };
+
+      /***/
+    },
+
+    /***/ 6471: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/css",
+        function () {
+          return __webpack_require__(7839);
+        },
+      ]);
+      if (false) {
+      }
+
+      /***/
+    },
+
+    /***/ 7839: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -15,7 +39,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(1503);
       /* harmony import */ var _css_module_css__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(7634);
+        __webpack_require__(5832);
       /* harmony import */ var _css_module_css__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           _css_module_css__WEBPACK_IMPORTED_MODULE_1__
@@ -34,37 +58,13 @@
 
       /***/
     },
-
-    /***/ 4569: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/css",
-        function () {
-          return __webpack_require__(3593);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
-
-    /***/ 7634: /***/ (module) => {
-      // extracted by mini-css-extract-plugin
-      module.exports = { helloWorld: "css_helloWorld__aUdUq" };
-
-      /***/
-    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(4569)
+      __webpack_exec__(6471)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for dynamic-HASH.js
@@ -1,24 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [2291],
   {
-    /***/ 1033: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/dynamic",
-        function () {
-          return __webpack_require__(2283);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
-
-    /***/ 2283: /***/ (
+    /***/ 133: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -33,7 +16,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(1503);
       /* harmony import */ var next_dynamic__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(4939);
+        __webpack_require__(7514);
       /* harmony import */ var next_dynamic__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           next_dynamic__WEBPACK_IMPORTED_MODULE_1__
@@ -42,12 +25,12 @@
       const DynamicHello = next_dynamic__WEBPACK_IMPORTED_MODULE_1___default()(
         () =>
           __webpack_require__
-            .e(/* import() */ 1916)
-            .then(__webpack_require__.bind(__webpack_require__, 1916))
+            .e(/* import() */ 3862)
+            .then(__webpack_require__.bind(__webpack_require__, 3862))
             .then((mod) => mod.Hello),
         {
           loadableGenerated: {
-            webpack: () => [/*require.resolve*/ 1916],
+            webpack: () => [/*require.resolve*/ 3862],
           },
         }
       );
@@ -74,17 +57,24 @@
       /***/
     },
 
-    /***/ 4939: /***/ (
-      module,
+    /***/ 431: /***/ (
+      __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      module.exports = __webpack_require__(5121);
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/dynamic",
+        function () {
+          return __webpack_require__(133);
+        },
+      ]);
+      if (false) {
+      }
 
       /***/
     },
 
-    /***/ 5121: /***/ (module, exports, __webpack_require__) => {
+    /***/ 1709: /***/ (module, exports, __webpack_require__) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -117,7 +107,7 @@
         __webpack_require__(2223)
       );
       const _loadablesharedruntime = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(7622)
+        __webpack_require__(2522)
       );
       const isServerSide = "object" === "undefined";
       // Normalize loader to return the module as form { default: Component } for `React.lazy`.
@@ -217,7 +207,7 @@
       /***/
     },
 
-    /***/ 5160: /***/ (
+    /***/ 2463: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -244,7 +234,7 @@
       /***/
     },
 
-    /***/ 7622: /***/ (
+    /***/ 2522: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -286,7 +276,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
       const _react = /*#__PURE__*/ _interop_require_default._(
         __webpack_require__(2223)
       );
-      const _loadablecontextsharedruntime = __webpack_require__(5160);
+      const _loadablecontextsharedruntime = __webpack_require__(2463);
       function resolve(obj) {
         return obj && obj.default ? obj.default : obj;
       }
@@ -519,13 +509,23 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
 
       /***/
     },
+
+    /***/ 7514: /***/ (
+      module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      module.exports = __webpack_require__(1709);
+
+      /***/
+    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(1033)
+      __webpack_exec__(431)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for hooks-HASH.js
@@ -1,24 +1,7 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [9804],
   {
-    /***/ 1679: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/hooks",
-        function () {
-          return __webpack_require__(9198);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
-
-    /***/ 9198: /***/ (
+    /***/ 2592: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -76,13 +59,30 @@
 
       /***/
     },
+
+    /***/ 3925: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/hooks",
+        function () {
+          return __webpack_require__(2592);
+        },
+      ]);
+      if (false) {
+      }
+
+      /***/
+    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(1679)
+      __webpack_exec__(3925)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for image-HASH.js

Diff too large to display

Diff for index-HASH.js
@@ -1,7 +1,24 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [3332],
   {
-    /***/ 3454: /***/ (
+    /***/ 8431: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/",
+        function () {
+          return __webpack_require__(8972);
+        },
+      ]);
+      if (false) {
+      }
+
+      /***/
+    },
+
+    /***/ 8972: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -19,30 +36,13 @@
 
       /***/
     },
-
-    /***/ 9241: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/",
-        function () {
-          return __webpack_require__(3454);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(9241)
+      __webpack_exec__(8431)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for link-HASH.js
@@ -1,26 +1,24 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [4672],
   {
-    /***/ 1970: /***/ (__unused_webpack_module, exports) => {
-      "use strict";
-
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      Object.defineProperty(exports, "errorOnce", {
-        enumerable: true,
-        get: function () {
-          return errorOnce;
+    /***/ 2025: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/link",
+        function () {
+          return __webpack_require__(3072);
         },
-      });
-      let errorOnce = (_) => {};
+      ]);
       if (false) {
-      } //# sourceMappingURL=error-once.js.map
+      }
 
       /***/
     },
 
-    /***/ 3262: /***/ (module, exports, __webpack_require__) => {
+    /***/ 3066: /***/ (module, exports, __webpack_require__) => {
       "use strict";
       /* __next_internal_client_entry_do_not_use__  cjs */
       Object.defineProperty(exports, "__esModule", {
@@ -47,17 +45,17 @@
       const _react = /*#__PURE__*/ _interop_require_wildcard._(
         __webpack_require__(2223)
       );
-      const _resolvehref = __webpack_require__(7868);
-      const _islocalurl = __webpack_require__(9350);
-      const _formaturl = __webpack_require__(6319);
-      const _utils = __webpack_require__(9889);
-      const _addlocale = __webpack_require__(9466);
-      const _routercontextsharedruntime = __webpack_require__(5691);
-      const _useintersection = __webpack_require__(3981);
-      const _getdomainlocale = __webpack_require__(4206);
-      const _addbasepath = __webpack_require__(9339);
-      const _usemergedref = __webpack_require__(6848);
-      const _erroronce = __webpack_require__(1970);
+      const _resolvehref = __webpack_require__(2776);
+      const _islocalurl = __webpack_require__(5770);
+      const _formaturl = __webpack_require__(8531);
+      const _utils = __webpack_require__(3565);
+      const _addlocale = __webpack_require__(8878);
+      const _routercontextsharedruntime = __webpack_require__(5111);
+      const _useintersection = __webpack_require__(6873);
+      const _getdomainlocale = __webpack_require__(4554);
+      const _addbasepath = __webpack_require__(9567);
+      const _usemergedref = __webpack_require__(4308);
+      const _erroronce = __webpack_require__(8910);
       const prefetched = new Set();
       function prefetch(router, href, as, options) {
         if (false) {
@@ -436,7 +434,167 @@
       /***/
     },
 
-    /***/ 3981: /***/ (module, exports, __webpack_require__) => {
+    /***/ 3072: /***/ (
+      __unused_webpack_module,
+      __webpack_exports__,
+      __webpack_require__
+    ) => {
+      "use strict";
+      __webpack_require__.r(__webpack_exports__);
+      /* harmony export */ __webpack_require__.d(__webpack_exports__, {
+        /* harmony export */ __N_SSP: () => /* binding */ __N_SSP,
+        /* harmony export */ default: () => __WEBPACK_DEFAULT_EXPORT__,
+        /* harmony export */
+      });
+      /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
+        __webpack_require__(1503);
+      /* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_1__ =
+        __webpack_require__(6929);
+      /* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_1___default =
+        /*#__PURE__*/ __webpack_require__.n(
+          next_link__WEBPACK_IMPORTED_MODULE_1__
+        );
+
+      function aLink(props) {
+        return /*#__PURE__*/ (0,
+        react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
+          children: [
+            /*#__PURE__*/ (0,
+            react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("h3", {
+              children: "A Link page!",
+            }),
+            /*#__PURE__*/ (0,
+            react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(
+              next_link__WEBPACK_IMPORTED_MODULE_1___default(),
+              {
+                href: "/",
+                children: "Go to /",
+              }
+            ),
+          ],
+        });
+      }
+      var __N_SSP = true;
+      /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = aLink;
+
+      /***/
+    },
+
+    /***/ 4308: /***/ (module, exports, __webpack_require__) => {
+      "use strict";
+
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
+      });
+      Object.defineProperty(exports, "useMergedRef", {
+        enumerable: true,
+        get: function () {
+          return useMergedRef;
+        },
+      });
+      const _react = __webpack_require__(2223);
+      function useMergedRef(refA, refB) {
+        const cleanupA = (0, _react.useRef)(null);
+        const cleanupB = (0, _react.useRef)(null);
+        // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null.
+        // (this happens often if the user doesn't pass a ref to Link/Form/Image)
+        // But this can cause us to leak a cleanup-ref into user code (previously via `<Link legacyBehavior>`),
+        // and the user might pass that ref into ref-merging library that doesn't support cleanup refs
+        // (because it hasn't been updated for React 19)
+        // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`.
+        // So in practice, it's safer to be defensive and always wrap the ref, even on React 19.
+        return (0, _react.useCallback)(
+          (current) => {
+            if (current === null) {
+              const cleanupFnA = cleanupA.current;
+              if (cleanupFnA) {
+                cleanupA.current = null;
+                cleanupFnA();
+              }
+              const cleanupFnB = cleanupB.current;
+              if (cleanupFnB) {
+                cleanupB.current = null;
+                cleanupFnB();
+              }
+            } else {
+              if (refA) {
+                cleanupA.current = applyRef(refA, current);
+              }
+              if (refB) {
+                cleanupB.current = applyRef(refB, current);
+              }
+            }
+          },
+          [refA, refB]
+        );
+      }
+      function applyRef(refA, current) {
+        if (typeof refA === "function") {
+          const cleanup = refA(current);
+          if (typeof cleanup === "function") {
+            return cleanup;
+          } else {
+            return () => refA(null);
+          }
+        } else {
+          refA.current = current;
+          return () => {
+            refA.current = null;
+          };
+        }
+      }
+      if (
+        (typeof exports.default === "function" ||
+          (typeof exports.default === "object" && exports.default !== null)) &&
+        typeof exports.default.__esModule === "undefined"
+      ) {
+        Object.defineProperty(exports.default, "__esModule", {
+          value: true,
+        });
+        Object.assign(exports.default, exports);
+        module.exports = exports.default;
+      } //# sourceMappingURL=use-merged-ref.js.map
+
+      /***/
+    },
+
+    /***/ 4554: /***/ (module, exports, __webpack_require__) => {
+      "use strict";
+
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
+      });
+      Object.defineProperty(exports, "getDomainLocale", {
+        enumerable: true,
+        get: function () {
+          return getDomainLocale;
+        },
+      });
+      const _normalizetrailingslash = __webpack_require__(7740);
+      const basePath =
+        /* unused pure expression or super */ null && (false || "");
+      function getDomainLocale(path, locale, locales, domainLocales) {
+        if (false) {
+        } else {
+          return false;
+        }
+      }
+      if (
+        (typeof exports.default === "function" ||
+          (typeof exports.default === "object" && exports.default !== null)) &&
+        typeof exports.default.__esModule === "undefined"
+      ) {
+        Object.defineProperty(exports.default, "__esModule", {
+          value: true,
+        });
+        Object.assign(exports.default, exports);
+        module.exports = exports.default;
+      } //# sourceMappingURL=get-domain-locale.js.map
+
+      /***/
+    },
+
+    /***/ 6873: /***/ (module, exports, __webpack_require__) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
@@ -449,7 +607,7 @@
         },
       });
       const _react = __webpack_require__(2223);
-      const _requestidlecallback = __webpack_require__(1472);
+      const _requestidlecallback = __webpack_require__(6892);
       const hasIntersectionObserver =
         typeof IntersectionObserver === "function";
       const observers = new Map();
@@ -561,189 +719,31 @@
       /***/
     },
 
-    /***/ 4206: /***/ (module, exports, __webpack_require__) => {
-      "use strict";
-
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      Object.defineProperty(exports, "getDomainLocale", {
-        enumerable: true,
-        get: function () {
-          return getDomainLocale;
-        },
-      });
-      const _normalizetrailingslash = __webpack_require__(6704);
-      const basePath =
-        /* unused pure expression or super */ null && (false || "");
-      function getDomainLocale(path, locale, locales, domainLocales) {
-        if (false) {
-        } else {
-          return false;
-        }
-      }
-      if (
-        (typeof exports.default === "function" ||
-          (typeof exports.default === "object" && exports.default !== null)) &&
-        typeof exports.default.__esModule === "undefined"
-      ) {
-        Object.defineProperty(exports.default, "__esModule", {
-          value: true,
-        });
-        Object.assign(exports.default, exports);
-        module.exports = exports.default;
-      } //# sourceMappingURL=get-domain-locale.js.map
-
-      /***/
-    },
-
-    /***/ 6691: /***/ (
+    /***/ 6929: /***/ (
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      module.exports = __webpack_require__(3262);
+      module.exports = __webpack_require__(3066);
 
       /***/
     },
 
-    /***/ 6771: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/link",
-        function () {
-          return __webpack_require__(8178);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
-
-    /***/ 6848: /***/ (module, exports, __webpack_require__) => {
+    /***/ 8910: /***/ (__unused_webpack_module, exports) => {
       "use strict";
 
       Object.defineProperty(exports, "__esModule", {
         value: true,
       });
-      Object.defineProperty(exports, "useMergedRef", {
+      Object.defineProperty(exports, "errorOnce", {
         enumerable: true,
         get: function () {
-          return useMergedRef;
+          return errorOnce;
         },
       });
-      const _react = __webpack_require__(2223);
-      function useMergedRef(refA, refB) {
-        const cleanupA = (0, _react.useRef)(null);
-        const cleanupB = (0, _react.useRef)(null);
-        // NOTE: In theory, we could skip the wrapping if only one of the refs is non-null.
-        // (this happens often if the user doesn't pass a ref to Link/Form/Image)
-        // But this can cause us to leak a cleanup-ref into user code (previously via `<Link legacyBehavior>`),
-        // and the user might pass that ref into ref-merging library that doesn't support cleanup refs
-        // (because it hasn't been updated for React 19)
-        // which can then cause things to blow up, because a cleanup-returning ref gets called with `null`.
-        // So in practice, it's safer to be defensive and always wrap the ref, even on React 19.
-        return (0, _react.useCallback)(
-          (current) => {
-            if (current === null) {
-              const cleanupFnA = cleanupA.current;
-              if (cleanupFnA) {
-                cleanupA.current = null;
-                cleanupFnA();
-              }
-              const cleanupFnB = cleanupB.current;
-              if (cleanupFnB) {
-                cleanupB.current = null;
-                cleanupFnB();
-              }
-            } else {
-              if (refA) {
-                cleanupA.current = applyRef(refA, current);
-              }
-              if (refB) {
-                cleanupB.current = applyRef(refB, current);
-              }
-            }
-          },
-          [refA, refB]
-        );
-      }
-      function applyRef(refA, current) {
-        if (typeof refA === "function") {
-          const cleanup = refA(current);
-          if (typeof cleanup === "function") {
-            return cleanup;
-          } else {
-            return () => refA(null);
-          }
-        } else {
-          refA.current = current;
-          return () => {
-            refA.current = null;
-          };
-        }
-      }
-      if (
-        (typeof exports.default === "function" ||
-          (typeof exports.default === "object" && exports.default !== null)) &&
-        typeof exports.default.__esModule === "undefined"
-      ) {
-        Object.defineProperty(exports.default, "__esModule", {
-          value: true,
-        });
-        Object.assign(exports.default, exports);
-        module.exports = exports.default;
-      } //# sourceMappingURL=use-merged-ref.js.map
-
-      /***/
-    },
-
-    /***/ 8178: /***/ (
-      __unused_webpack_module,
-      __webpack_exports__,
-      __webpack_require__
-    ) => {
-      "use strict";
-      __webpack_require__.r(__webpack_exports__);
-      /* harmony export */ __webpack_require__.d(__webpack_exports__, {
-        /* harmony export */ __N_SSP: () => /* binding */ __N_SSP,
-        /* harmony export */ default: () => __WEBPACK_DEFAULT_EXPORT__,
-        /* harmony export */
-      });
-      /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
-        __webpack_require__(1503);
-      /* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(6691);
-      /* harmony import */ var next_link__WEBPACK_IMPORTED_MODULE_1___default =
-        /*#__PURE__*/ __webpack_require__.n(
-          next_link__WEBPACK_IMPORTED_MODULE_1__
-        );
-
-      function aLink(props) {
-        return /*#__PURE__*/ (0,
-        react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
-          children: [
-            /*#__PURE__*/ (0,
-            react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)("h3", {
-              children: "A Link page!",
-            }),
-            /*#__PURE__*/ (0,
-            react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx)(
-              next_link__WEBPACK_IMPORTED_MODULE_1___default(),
-              {
-                href: "/",
-                children: "Go to /",
-              }
-            ),
-          ],
-        });
-      }
-      var __N_SSP = true;
-      /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = aLink;
+      let errorOnce = (_) => {};
+      if (false) {
+      } //# sourceMappingURL=error-once.js.map
 
       /***/
     },
@@ -753,7 +753,7 @@
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(6771)
+      __webpack_exec__(2025)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for routerDirect-HASH.js
@@ -1,7 +1,24 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [188],
   {
-    /***/ 286: /***/ (
+    /***/ 417: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/routerDirect",
+        function () {
+          return __webpack_require__(504);
+        },
+      ]);
+      if (false) {
+      }
+
+      /***/
+    },
+
+    /***/ 504: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -16,7 +33,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(1503);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(7798);
+        __webpack_require__(1840);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           next_router__WEBPACK_IMPORTED_MODULE_1__
@@ -36,29 +53,12 @@
       /***/
     },
 
-    /***/ 4283: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/routerDirect",
-        function () {
-          return __webpack_require__(286);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
-
-    /***/ 7798: /***/ (
+    /***/ 1840: /***/ (
       module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      module.exports = __webpack_require__(9587);
+      module.exports = __webpack_require__(1903);
 
       /***/
     },
@@ -68,7 +68,7 @@
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(4283)
+      __webpack_exec__(417)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for script-HASH.js
@@ -1,7 +1,34 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [1209],
   {
-    /***/ 661: /***/ (
+    /***/ 2398: /***/ (
+      module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      module.exports = __webpack_require__(2397);
+
+      /***/
+    },
+
+    /***/ 4305: /***/ (
+      __unused_webpack_module,
+      __unused_webpack_exports,
+      __webpack_require__
+    ) => {
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/script",
+        function () {
+          return __webpack_require__(8543);
+        },
+      ]);
+      if (false) {
+      }
+
+      /***/
+    },
+
+    /***/ 8543: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -16,7 +43,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(1503);
       /* harmony import */ var next_script__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(5964);
+        __webpack_require__(2398);
       /* harmony import */ var next_script__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           next_script__WEBPACK_IMPORTED_MODULE_1__
@@ -48,40 +75,13 @@
 
       /***/
     },
-
-    /***/ 5964: /***/ (
-      module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      module.exports = __webpack_require__(297);
-
-      /***/
-    },
-
-    /***/ 8803: /***/ (
-      __unused_webpack_module,
-      __unused_webpack_exports,
-      __webpack_require__
-    ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/script",
-        function () {
-          return __webpack_require__(661);
-        },
-      ]);
-      if (false) {
-      }
-
-      /***/
-    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(8803)
+      __webpack_exec__(4305)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for withRouter-HASH.js
@@ -1,24 +1,17 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [3263],
   {
-    /***/ 3163: /***/ (
-      __unused_webpack_module,
+    /***/ 1840: /***/ (
+      module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      (window.__NEXT_P = window.__NEXT_P || []).push([
-        "/withRouter",
-        function () {
-          return __webpack_require__(3295);
-        },
-      ]);
-      if (false) {
-      }
+      module.exports = __webpack_require__(1903);
 
       /***/
     },
 
-    /***/ 3295: /***/ (
+    /***/ 2037: /***/ (
       __unused_webpack_module,
       __webpack_exports__,
       __webpack_require__
@@ -33,7 +26,7 @@
       /* harmony import */ var react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__ =
         __webpack_require__(1503);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1__ =
-        __webpack_require__(7798);
+        __webpack_require__(1840);
       /* harmony import */ var next_router__WEBPACK_IMPORTED_MODULE_1___default =
         /*#__PURE__*/ __webpack_require__.n(
           next_router__WEBPACK_IMPORTED_MODULE_1__
@@ -52,12 +45,19 @@
       /***/
     },
 
-    /***/ 7798: /***/ (
-      module,
+    /***/ 4041: /***/ (
+      __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
-      module.exports = __webpack_require__(9587);
+      (window.__NEXT_P = window.__NEXT_P || []).push([
+        "/withRouter",
+        function () {
+          return __webpack_require__(2037);
+        },
+      ]);
+      if (false) {
+      }
 
       /***/
     },
@@ -67,7 +67,7 @@
     /******/ var __webpack_exec__ = (moduleId) =>
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(0, [636, 6593, 8792], () =>
-      __webpack_exec__(3163)
+      __webpack_exec__(4041)
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for 4498-HASH.js
failed to diff
Diff for 9225-HASH.js
@@ -1,32 +1,81 @@
 "use strict";
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
-  [9225],
+  [8439],
   {
-    /***/ 2: /***/ (__unused_webpack_module, exports, __webpack_require__) => {
+    /***/ 405: /***/ (
+      __unused_webpack_module,
+      exports,
+      __webpack_require__
+    ) => {
       Object.defineProperty(exports, "__esModule", {
         value: true,
       });
-      Object.defineProperty(exports, "ImageConfigContext", {
+      Object.defineProperty(exports, "default", {
         enumerable: true,
         get: function () {
-          return ImageConfigContext;
+          return SideEffect;
         },
       });
-      const _interop_require_default = __webpack_require__(9010);
-      const _react = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(8879)
-      );
-      const _imageconfig = __webpack_require__(1686);
-      const ImageConfigContext = _react.default.createContext(
-        _imageconfig.imageConfigDefault
-      );
-      if (false) {
-      } //# sourceMappingURL=image-config-context.shared-runtime.js.map
+      const _react = __webpack_require__(1774);
+      const isServer = "object" === "undefined";
+      const useClientOnlyLayoutEffect = isServer
+        ? () => {}
+        : _react.useLayoutEffect;
+      const useClientOnlyEffect = isServer ? () => {} : _react.useEffect;
+      function SideEffect(props) {
+        const { headManager, reduceComponentsToState } = props;
+        function emitChange() {
+          if (headManager && headManager.mountedInstances) {
+            const headElements = _react.Children.toArray(
+              Array.from(headManager.mountedInstances).filter(Boolean)
+            );
+            headManager.updateHead(reduceComponentsToState(headElements));
+          }
+        }
+        if (isServer) {
+          headManager?.mountedInstances?.add(props.children);
+          emitChange();
+        }
+        useClientOnlyLayoutEffect(() => {
+          headManager?.mountedInstances?.add(props.children);
+          return () => {
+            headManager?.mountedInstances?.delete(props.children);
+          };
+        });
+        // We need to call `updateHead` method whenever the `SideEffect` is trigger in all
+        // life-cycles: mount, update, unmount. However, if there are multiple `SideEffect`s
+        // being rendered, we only trigger the method from the last one.
+        // This is ensured by keeping the last unflushed `updateHead` in the `_pendingUpdate`
+        // singleton in the layout effect pass, and actually trigger it in the effect pass.
+        useClientOnlyLayoutEffect(() => {
+          if (headManager) {
+            headManager._pendingUpdate = emitChange;
+          }
+          return () => {
+            if (headManager) {
+              headManager._pendingUpdate = emitChange;
+            }
+          };
+        });
+        useClientOnlyEffect(() => {
+          if (headManager && headManager._pendingUpdate) {
+            headManager._pendingUpdate();
+            headManager._pendingUpdate = null;
+          }
+          return () => {
+            if (headManager && headManager._pendingUpdate) {
+              headManager._pendingUpdate();
+              headManager._pendingUpdate = null;
+            }
+          };
+        });
+        return null;
+      } //# sourceMappingURL=side-effect.js.map
 
       /***/
     },
 
-    /***/ 1169: /***/ (
+    /***/ 1155: /***/ (
       __unused_webpack_module,
       exports,
       __webpack_require__
@@ -40,9 +89,9 @@
           return getImgProps;
         },
       });
-      const _warnonce = __webpack_require__(4352);
-      const _imageblursvg = __webpack_require__(2314);
-      const _imageconfig = __webpack_require__(1686);
+      const _warnonce = __webpack_require__(5358);
+      const _imageblursvg = __webpack_require__(6924);
+      const _imageconfig = __webpack_require__(9712);
       const VALID_LOADING_VALUES =
         /* unused pure expression or super */ null && [
           "lazy",
@@ -473,243 +522,40 @@
       /***/
     },
 
-    /***/ 1666: /***/ (module, exports, __webpack_require__) => {
-      /* __next_internal_client_entry_do_not_use__  cjs */
+    /***/ 1417: /***/ (
+      __unused_webpack_module,
+      exports,
+      __webpack_require__
+    ) => {
       Object.defineProperty(exports, "__esModule", {
         value: true,
       });
-      0 && 0;
-      function _export(target, all) {
-        for (var name in all)
-          Object.defineProperty(target, name, {
-            enumerable: true,
-            get: all[name],
-          });
-      }
-      _export(exports, {
-        default: function () {
+      Object.defineProperty(exports, "default", {
+        enumerable: true,
+        get: function () {
           return _default;
         },
-        defaultHead: function () {
-          return defaultHead;
-        },
       });
-      const _interop_require_default = __webpack_require__(9010);
-      const _interop_require_wildcard = __webpack_require__(2275);
-      const _jsxruntime = __webpack_require__(1024);
-      const _react = /*#__PURE__*/ _interop_require_wildcard._(
-        __webpack_require__(8879)
-      );
-      const _sideeffect = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(2543)
-      );
-      const _headmanagercontextsharedruntime = __webpack_require__(5428);
-      const _warnonce = __webpack_require__(4352);
-      function defaultHead() {
-        const head = [
-          /*#__PURE__*/ (0, _jsxruntime.jsx)(
-            "meta",
-            {
-              charSet: "utf-8",
-            },
-            "charset"
-          ),
-          /*#__PURE__*/ (0, _jsxruntime.jsx)(
-            "meta",
-            {
-              name: "viewport",
-              content: "width=device-width",
-            },
-            "viewport"
-          ),
-        ];
-        return head;
-      }
-      function onlyReactElement(list, child) {
-        // React children can be "string" or "number" in this case we ignore them for backwards compat
-        if (typeof child === "string" || typeof child === "number") {
-          return list;
-        }
-        // Adds support for React.Fragment
-        if (child.type === _react.default.Fragment) {
-          return list.concat(
-            _react.default.Children.toArray(child.props.children).reduce(
-              (fragmentList, fragmentChild) => {
-                if (
-                  typeof fragmentChild === "string" ||
-                  typeof fragmentChild === "number"
-                ) {
-                  return fragmentList;
-                }
-                return fragmentList.concat(fragmentChild);
-              },
-              []
-            )
-          );
+      const _findclosestquality = __webpack_require__(1639);
+      function defaultLoader({ config, src, width, quality }) {
+        if (false) {
         }
-        return list.concat(child);
-      }
-      const METATYPES = ["name", "httpEquiv", "charSet", "itemProp"];
-      /*
- returns a function for filtering head child elements
- which shouldn't be duplicated, like <title/>
- Also adds support for deduplicated `key` properties
-*/ function unique() {
-        const keys = new Set();
-        const tags = new Set();
-        const metaTypes = new Set();
-        const metaCategories = {};
-        return (h) => {
-          let isUnique = true;
-          let hasKey = false;
-          if (h.key && typeof h.key !== "number" && h.key.indexOf("$") > 0) {
-            hasKey = true;
-            const key = h.key.slice(h.key.indexOf("$") + 1);
-            if (keys.has(key)) {
-              isUnique = false;
-            } else {
-              keys.add(key);
-            }
-          }
-          // eslint-disable-next-line default-case
-          switch (h.type) {
-            case "title":
-            case "base":
-              if (tags.has(h.type)) {
-                isUnique = false;
-              } else {
-                tags.add(h.type);
-              }
-              break;
-            case "meta":
-              for (let i = 0, len = METATYPES.length; i < len; i++) {
-                const metatype = METATYPES[i];
-                if (!h.props.hasOwnProperty(metatype)) continue;
-                if (metatype === "charSet") {
-                  if (metaTypes.has(metatype)) {
-                    isUnique = false;
-                  } else {
-                    metaTypes.add(metatype);
-                  }
-                } else {
-                  const category = h.props[metatype];
-                  const categories = metaCategories[metatype] || new Set();
-                  if (
-                    (metatype !== "name" || !hasKey) &&
-                    categories.has(category)
-                  ) {
-                    isUnique = false;
-                  } else {
-                    categories.add(category);
-                    metaCategories[metatype] = categories;
-                  }
-                }
-              }
-              break;
-          }
-          return isUnique;
-        };
-      }
-      /**
-       *
-       * @param headChildrenElements List of children of <Head>
-       */ function reduceComponents(headChildrenElements) {
-        return headChildrenElements
-          .reduce(onlyReactElement, [])
-          .reverse()
-          .concat(defaultHead().reverse())
-          .filter(unique())
-          .reverse()
-          .map((c, i) => {
-            const key = c.key || i;
-            if (false) {
-            }
-            return /*#__PURE__*/ _react.default.cloneElement(c, {
-              key,
-            });
-          });
-      }
-      /**
-       * This component injects elements to `<head>` of your page.
-       * To avoid duplicated `tags` in `<head>` you can use the `key` property, which will make sure every tag is only rendered once.
-       */ function Head({ children }) {
-        const headManager = (0, _react.useContext)(
-          _headmanagercontextsharedruntime.HeadManagerContext
-        );
-        return /*#__PURE__*/ (0, _jsxruntime.jsx)(_sideeffect.default, {
-          reduceComponentsToState: reduceComponents,
-          headManager: headManager,
-          children: children,
-        });
-      }
-      const _default = Head;
-      if (
-        (typeof exports.default === "function" ||
-          (typeof exports.default === "object" && exports.default !== null)) &&
-        typeof exports.default.__esModule === "undefined"
-      ) {
-        Object.defineProperty(exports.default, "__esModule", {
-          value: true,
-        });
-        Object.assign(exports.default, exports);
-        module.exports = exports.default;
-      } //# sourceMappingURL=head.js.map
-
-      /***/
-    },
-
-    /***/ 1686: /***/ (__unused_webpack_module, exports) => {
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      0 && 0;
-      function _export(target, all) {
-        for (var name in all)
-          Object.defineProperty(target, name, {
-            enumerable: true,
-            get: all[name],
-          });
+        const q = (0, _findclosestquality.findClosestQuality)(quality, config);
+        return `${config.path}?url=${encodeURIComponent(
+          src
+        )}&w=${width}&q=${q}${
+          src.startsWith("/_next/static/media/") && false ? 0 : ""
+        }`;
       }
-      _export(exports, {
-        VALID_LOADERS: function () {
-          return VALID_LOADERS;
-        },
-        imageConfigDefault: function () {
-          return imageConfigDefault;
-        },
-      });
-      const VALID_LOADERS = [
-        "default",
-        "imgix",
-        "cloudinary",
-        "akamai",
-        "custom",
-      ];
-      const imageConfigDefault = {
-        deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
-        imageSizes: [32, 48, 64, 96, 128, 256, 384],
-        path: "/_next/image",
-        loader: "default",
-        loaderFile: "",
-        /**
-         * @deprecated Use `remotePatterns` instead to protect your application from malicious users.
-         */ domains: [],
-        disableStaticImages: false,
-        minimumCacheTTL: 14400,
-        formats: ["image/webp"],
-        dangerouslyAllowSVG: false,
-        contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`,
-        contentDispositionType: "attachment",
-        localPatterns: undefined,
-        remotePatterns: [],
-        qualities: [75],
-        unoptimized: false,
-      }; //# sourceMappingURL=image-config.js.map
+      // We use this to determine if the import is the default loader
+      // or a custom loader defined by the user in next.config.js
+      defaultLoader.__next_img_default = true;
+      const _default = defaultLoader; //# sourceMappingURL=image-loader.js.map
 
       /***/
     },
 
-    /***/ 2285: /***/ (__unused_webpack_module, exports) => {
+    /***/ 1639: /***/ (__unused_webpack_module, exports) => {
       Object.defineProperty(exports, "__esModule", {
         value: true,
       });
@@ -733,7 +579,35 @@
       /***/
     },
 
-    /***/ 2314: /***/ (__unused_webpack_module, exports) => {
+    /***/ 2896: /***/ (
+      __unused_webpack_module,
+      exports,
+      __webpack_require__
+    ) => {
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
+      });
+      Object.defineProperty(exports, "ImageConfigContext", {
+        enumerable: true,
+        get: function () {
+          return ImageConfigContext;
+        },
+      });
+      const _interop_require_default = __webpack_require__(2570);
+      const _react = /*#__PURE__*/ _interop_require_default._(
+        __webpack_require__(1774)
+      );
+      const _imageconfig = __webpack_require__(9712);
+      const ImageConfigContext = _react.default.createContext(
+        _imageconfig.imageConfigDefault
+      );
+      if (false) {
+      } //# sourceMappingURL=image-config-context.shared-runtime.js.map
+
+      /***/
+    },
+
+    /***/ 6924: /***/ (__unused_webpack_module, exports) => {
       /**
        * A shared function, used on both client and server, to generate a SVG blur placeholder.
        */
@@ -772,113 +646,7 @@
       /***/
     },
 
-    /***/ 2543: /***/ (
-      __unused_webpack_module,
-      exports,
-      __webpack_require__
-    ) => {
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      Object.defineProperty(exports, "default", {
-        enumerable: true,
-        get: function () {
-          return SideEffect;
-        },
-      });
-      const _react = __webpack_require__(8879);
-      const isServer = "object" === "undefined";
-      const useClientOnlyLayoutEffect = isServer
-        ? () => {}
-        : _react.useLayoutEffect;
-      const useClientOnlyEffect = isServer ? () => {} : _react.useEffect;
-      function SideEffect(props) {
-        const { headManager, reduceComponentsToState } = props;
-        function emitChange() {
-          if (headManager && headManager.mountedInstances) {
-            const headElements = _react.Children.toArray(
-              Array.from(headManager.mountedInstances).filter(Boolean)
-            );
-            headManager.updateHead(reduceComponentsToState(headElements));
-          }
-        }
-        if (isServer) {
-          headManager?.mountedInstances?.add(props.children);
-          emitChange();
-        }
-        useClientOnlyLayoutEffect(() => {
-          headManager?.mountedInstances?.add(props.children);
-          return () => {
-            headManager?.mountedInstances?.delete(props.children);
-          };
-        });
-        // We need to call `updateHead` method whenever the `SideEffect` is trigger in all
-        // life-cycles: mount, update, unmount. However, if there are multiple `SideEffect`s
-        // being rendered, we only trigger the method from the last one.
-        // This is ensured by keeping the last unflushed `updateHead` in the `_pendingUpdate`
-        // singleton in the layout effect pass, and actually trigger it in the effect pass.
-        useClientOnlyLayoutEffect(() => {
-          if (headManager) {
-            headManager._pendingUpdate = emitChange;
-          }
-          return () => {
-            if (headManager) {
-              headManager._pendingUpdate = emitChange;
-            }
-          };
-        });
-        useClientOnlyEffect(() => {
-          if (headManager && headManager._pendingUpdate) {
-            headManager._pendingUpdate();
-            headManager._pendingUpdate = null;
-          }
-          return () => {
-            if (headManager && headManager._pendingUpdate) {
-              headManager._pendingUpdate();
-              headManager._pendingUpdate = null;
-            }
-          };
-        });
-        return null;
-      } //# sourceMappingURL=side-effect.js.map
-
-      /***/
-    },
-
-    /***/ 8035: /***/ (
-      __unused_webpack_module,
-      exports,
-      __webpack_require__
-    ) => {
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      Object.defineProperty(exports, "default", {
-        enumerable: true,
-        get: function () {
-          return _default;
-        },
-      });
-      const _findclosestquality = __webpack_require__(2285);
-      function defaultLoader({ config, src, width, quality }) {
-        if (false) {
-        }
-        const q = (0, _findclosestquality.findClosestQuality)(quality, config);
-        return `${config.path}?url=${encodeURIComponent(
-          src
-        )}&w=${width}&q=${q}${
-          src.startsWith("/_next/static/media/") && false ? 0 : ""
-        }`;
-      }
-      // We use this to determine if the import is the default loader
-      // or a custom loader defined by the user in next.config.js
-      defaultLoader.__next_img_default = true;
-      const _default = defaultLoader; //# sourceMappingURL=image-loader.js.map
-
-      /***/
-    },
-
-    /***/ 8848: /***/ (module, exports, __webpack_require__) => {
+    /***/ 7614: /***/ (module, exports, __webpack_require__) => {
       Object.defineProperty(exports, "__esModule", {
         value: true,
       });
@@ -888,7 +656,7 @@
           return useMergedRef;
         },
       });
-      const _react = __webpack_require__(8879);
+      const _react = __webpack_require__(1774);
       function useMergedRef(refA, refB) {
         const cleanupA = (0, _react.useRef)(null);
         const cleanupB = (0, _react.useRef)(null);
@@ -954,32 +722,7 @@
       /***/
     },
 
-    /***/ 9059: /***/ (
-      __unused_webpack_module,
-      exports,
-      __webpack_require__
-    ) => {
-      Object.defineProperty(exports, "__esModule", {
-        value: true,
-      });
-      Object.defineProperty(exports, "RouterContext", {
-        enumerable: true,
-        get: function () {
-          return RouterContext;
-        },
-      });
-      const _interop_require_default = __webpack_require__(9010);
-      const _react = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(8879)
-      );
-      const RouterContext = _react.default.createContext(null);
-      if (false) {
-      } //# sourceMappingURL=router-context.shared-runtime.js.map
-
-      /***/
-    },
-
-    /***/ 9225: /***/ (module, exports, __webpack_require__) => {
+    /***/ 8439: /***/ (module, exports, __webpack_require__) => {
       /* __next_internal_client_entry_do_not_use__  cjs */
       Object.defineProperty(exports, "__esModule", {
         value: true,
@@ -990,27 +733,27 @@
           return Image;
         },
       });
-      const _interop_require_default = __webpack_require__(9010);
-      const _interop_require_wildcard = __webpack_require__(2275);
-      const _jsxruntime = __webpack_require__(1024);
+      const _interop_require_default = __webpack_require__(2570);
+      const _interop_require_wildcard = __webpack_require__(5643);
+      const _jsxruntime = __webpack_require__(2014);
       const _react = /*#__PURE__*/ _interop_require_wildcard._(
-        __webpack_require__(8879)
+        __webpack_require__(1774)
       );
       const _reactdom = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(3869)
+        __webpack_require__(7499)
       );
       const _head = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(1666)
+        __webpack_require__(9452)
       );
-      const _getimgprops = __webpack_require__(1169);
-      const _imageconfig = __webpack_require__(1686);
-      const _imageconfigcontextsharedruntime = __webpack_require__(2);
-      const _warnonce = __webpack_require__(4352);
-      const _routercontextsharedruntime = __webpack_require__(9059);
+      const _getimgprops = __webpack_require__(1155);
+      const _imageconfig = __webpack_require__(9712);
+      const _imageconfigcontextsharedruntime = __webpack_require__(2896);
+      const _warnonce = __webpack_require__(5358);
+      const _routercontextsharedruntime = __webpack_require__(9813);
       const _imageloader = /*#__PURE__*/ _interop_require_default._(
-        __webpack_require__(8035)
+        __webpack_require__(1417)
       );
-      const _usemergedref = __webpack_require__(8848);
+      const _usemergedref = __webpack_require__(7614);
       // This is replaced by webpack define plugin
       const configEnv = {
         deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
@@ -1331,5 +1074,266 @@
 
       /***/
     },
+
+    /***/ 9452: /***/ (module, exports, __webpack_require__) => {
+      /* __next_internal_client_entry_do_not_use__  cjs */
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
+      });
+      0 && 0;
+      function _export(target, all) {
+        for (var name in all)
+          Object.defineProperty(target, name, {
+            enumerable: true,
+            get: all[name],
+          });
+      }
+      _export(exports, {
+        default: function () {
+          return _default;
+        },
+        defaultHead: function () {
+          return defaultHead;
+        },
+      });
+      const _interop_require_default = __webpack_require__(2570);
+      const _interop_require_wildcard = __webpack_require__(5643);
+      const _jsxruntime = __webpack_require__(2014);
+      const _react = /*#__PURE__*/ _interop_require_wildcard._(
+        __webpack_require__(1774)
+      );
+      const _sideeffect = /*#__PURE__*/ _interop_require_default._(
+        __webpack_require__(405)
+      );
+      const _headmanagercontextsharedruntime = __webpack_require__(5326);
+      const _warnonce = __webpack_require__(5358);
+      function defaultHead() {
+        const head = [
+          /*#__PURE__*/ (0, _jsxruntime.jsx)(
+            "meta",
+            {
+              charSet: "utf-8",
+            },
+            "charset"
+          ),
+          /*#__PURE__*/ (0, _jsxruntime.jsx)(
+            "meta",
+            {
+              name: "viewport",
+              content: "width=device-width",
+            },
+            "viewport"
+          ),
+        ];
+        return head;
+      }
+      function onlyReactElement(list, child) {
+        // React children can be "string" or "number" in this case we ignore them for backwards compat
+        if (typeof child === "string" || typeof child === "number") {
+          return list;
+        }
+        // Adds support for React.Fragment
+        if (child.type === _react.default.Fragment) {
+          return list.concat(
+            _react.default.Children.toArray(child.props.children).reduce(
+              (fragmentList, fragmentChild) => {
+                if (
+                  typeof fragmentChild === "string" ||
+                  typeof fragmentChild === "number"
+                ) {
+                  return fragmentList;
+                }
+                return fragmentList.concat(fragmentChild);
+              },
+              []
+            )
+          );
+        }
+        return list.concat(child);
+      }
+      const METATYPES = ["name", "httpEquiv", "charSet", "itemProp"];
+      /*
+ returns a function for filtering head child elements
+ which shouldn't be duplicated, like <title/>
+ Also adds support for deduplicated `key` properties
+*/ function unique() {
+        const keys = new Set();
+        const tags = new Set();
+        const metaTypes = new Set();
+        const metaCategories = {};
+        return (h) => {
+          let isUnique = true;
+          let hasKey = false;
+          if (h.key && typeof h.key !== "number" && h.key.indexOf("$") > 0) {
+            hasKey = true;
+            const key = h.key.slice(h.key.indexOf("$") + 1);
+            if (keys.has(key)) {
+              isUnique = false;
+            } else {
+              keys.add(key);
+            }
+          }
+          // eslint-disable-next-line default-case
+          switch (h.type) {
+            case "title":
+            case "base":
+              if (tags.has(h.type)) {
+                isUnique = false;
+              } else {
+                tags.add(h.type);
+              }
+              break;
+            case "meta":
+              for (let i = 0, len = METATYPES.length; i < len; i++) {
+                const metatype = METATYPES[i];
+                if (!h.props.hasOwnProperty(metatype)) continue;
+                if (metatype === "charSet") {
+                  if (metaTypes.has(metatype)) {
+                    isUnique = false;
+                  } else {
+                    metaTypes.add(metatype);
+                  }
+                } else {
+                  const category = h.props[metatype];
+                  const categories = metaCategories[metatype] || new Set();
+                  if (
+                    (metatype !== "name" || !hasKey) &&
+                    categories.has(category)
+                  ) {
+                    isUnique = false;
+                  } else {
+                    categories.add(category);
+                    metaCategories[metatype] = categories;
+                  }
+                }
+              }
+              break;
+          }
+          return isUnique;
+        };
+      }
+      /**
+       *
+       * @param headChildrenElements List of children of <Head>
+       */ function reduceComponents(headChildrenElements) {
+        return headChildrenElements
+          .reduce(onlyReactElement, [])
+          .reverse()
+          .concat(defaultHead().reverse())
+          .filter(unique())
+          .reverse()
+          .map((c, i) => {
+            const key = c.key || i;
+            if (false) {
+            }
+            return /*#__PURE__*/ _react.default.cloneElement(c, {
+              key,
+            });
+          });
+      }
+      /**
+       * This component injects elements to `<head>` of your page.
+       * To avoid duplicated `tags` in `<head>` you can use the `key` property, which will make sure every tag is only rendered once.
+       */ function Head({ children }) {
+        const headManager = (0, _react.useContext)(
+          _headmanagercontextsharedruntime.HeadManagerContext
+        );
+        return /*#__PURE__*/ (0, _jsxruntime.jsx)(_sideeffect.default, {
+          reduceComponentsToState: reduceComponents,
+          headManager: headManager,
+          children: children,
+        });
+      }
+      const _default = Head;
+      if (
+        (typeof exports.default === "function" ||
+          (typeof exports.default === "object" && exports.default !== null)) &&
+        typeof exports.default.__esModule === "undefined"
+      ) {
+        Object.defineProperty(exports.default, "__esModule", {
+          value: true,
+        });
+        Object.assign(exports.default, exports);
+        module.exports = exports.default;
+      } //# sourceMappingURL=head.js.map
+
+      /***/
+    },
+
+    /***/ 9712: /***/ (__unused_webpack_module, exports) => {
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
+      });
+      0 && 0;
+      function _export(target, all) {
+        for (var name in all)
+          Object.defineProperty(target, name, {
+            enumerable: true,
+            get: all[name],
+          });
+      }
+      _export(exports, {
+        VALID_LOADERS: function () {
+          return VALID_LOADERS;
+        },
+        imageConfigDefault: function () {
+          return imageConfigDefault;
+        },
+      });
+      const VALID_LOADERS = [
+        "default",
+        "imgix",
+        "cloudinary",
+        "akamai",
+        "custom",
+      ];
+      const imageConfigDefault = {
+        deviceSizes: [640, 750, 828, 1080, 1200, 1920, 2048, 3840],
+        imageSizes: [32, 48, 64, 96, 128, 256, 384],
+        path: "/_next/image",
+        loader: "default",
+        loaderFile: "",
+        /**
+         * @deprecated Use `remotePatterns` instead to protect your application from malicious users.
+         */ domains: [],
+        disableStaticImages: false,
+        minimumCacheTTL: 14400,
+        formats: ["image/webp"],
+        dangerouslyAllowSVG: false,
+        contentSecurityPolicy: `script-src 'none'; frame-src 'none'; sandbox;`,
+        contentDispositionType: "attachment",
+        localPatterns: undefined,
+        remotePatterns: [],
+        qualities: [75],
+        unoptimized: false,
+      }; //# sourceMappingURL=image-config.js.map
+
+      /***/
+    },
+
+    /***/ 9813: /***/ (
+      __unused_webpack_module,
+      exports,
+      __webpack_require__
+    ) => {
+      Object.defineProperty(exports, "__esModule", {
+        value: true,
+      });
+      Object.defineProperty(exports, "RouterContext", {
+        enumerable: true,
+        get: function () {
+          return RouterContext;
+        },
+      });
+      const _interop_require_default = __webpack_require__(2570);
+      const _react = /*#__PURE__*/ _interop_require_default._(
+        __webpack_require__(1774)
+      );
+      const RouterContext = _react.default.createContext(null);
+      if (false) {
+      } //# sourceMappingURL=router-context.shared-runtime.js.map
+
+      /***/
+    },
   },
 ]);
Diff for main-HASH.js

Diff too large to display

Diff for main-app-HASH.js
@@ -1,64 +1,64 @@
 (self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([
   [4977],
   {
-    /***/ 6400: /***/ (
+    /***/ 2788: /***/ () => {
+      /* (ignored) */
+      /***/
+    },
+
+    /***/ 8100: /***/ (
       __unused_webpack_module,
       __unused_webpack_exports,
       __webpack_require__
     ) => {
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 7455, 23)
+        __webpack_require__.t.bind(__webpack_require__, 7641, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 2436, 23)
+        __webpack_require__.t.bind(__webpack_require__, 8833, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 4220, 23)
+        __webpack_require__.t.bind(__webpack_require__, 202, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 6179, 23)
+        __webpack_require__.t.bind(__webpack_require__, 5505, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 477, 23)
+        __webpack_require__.t.bind(__webpack_require__, 9743, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 45, 23)
+        __webpack_require__.t.bind(__webpack_require__, 2067, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 4644, 23)
+        __webpack_require__.t.bind(__webpack_require__, 1166, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 8713, 23)
+        __webpack_require__.t.bind(__webpack_require__, 3791, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 1432, 23)
+        __webpack_require__.t.bind(__webpack_require__, 666, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 5011, 23)
+        __webpack_require__.t.bind(__webpack_require__, 9993, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 2560, 23)
+        __webpack_require__.t.bind(__webpack_require__, 1706, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.bind(__webpack_require__, 5161)
+        __webpack_require__.bind(__webpack_require__, 6335)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 7801, 23)
+        __webpack_require__.t.bind(__webpack_require__, 3883, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 9992, 23)
+        __webpack_require__.t.bind(__webpack_require__, 7030, 23)
       );
       Promise.resolve(/* import() eager */).then(
-        __webpack_require__.t.bind(__webpack_require__, 2066, 23)
+        __webpack_require__.t.bind(__webpack_require__, 3712, 23)
       );
 
       /***/
     },
-
-    /***/ 7854: /***/ () => {
-      /* (ignored) */
-      /***/
-    },
   },
   /******/ (__webpack_require__) => {
     // webpackRuntimeModules
@@ -66,8 +66,8 @@
       __webpack_require__((__webpack_require__.s = moduleId));
     /******/ __webpack_require__.O(
       0,
-      [9137, 4498],
-      () => (__webpack_exec__(1225), __webpack_exec__(6400))
+      [2494, 6734],
+      () => (__webpack_exec__(9303), __webpack_exec__(8100))
     );
     /******/ var __webpack_exports__ = __webpack_require__.O();
     /******/ _N_E = __webpack_exports__;
Diff for app-page-exp..ntime.dev.js
failed to diff
Diff for app-page-exp..time.prod.js
failed to diff
Diff for app-page-tur..ntime.dev.js
failed to diff
Diff for app-page-tur..time.prod.js
failed to diff
Diff for app-page-tur..ntime.dev.js
failed to diff
Diff for app-page-tur..time.prod.js
failed to diff
Diff for app-page.runtime.dev.js
failed to diff
Diff for app-page.runtime.prod.js
failed to diff
Diff for app-route-ex..ntime.dev.js

Diff too large to display

Diff for app-route-ex..time.prod.js

Diff too large to display

Diff for app-route-tu..ntime.dev.js

Diff too large to display

Diff for app-route-tu..time.prod.js

Diff too large to display

Diff for app-route-tu..ntime.dev.js

Diff too large to display

Diff for app-route-tu..time.prod.js

Diff too large to display

Diff for app-route.runtime.dev.js

Diff too large to display

Diff for app-route.ru..time.prod.js

Diff too large to display

Diff for pages-api.runtime.dev.js

Diff too large to display

Diff for pages.runtime.dev.js

Diff too large to display

Commit: 06765ee

Base automatically changed from lubieowoce/headers-in-runtime-prefetch to canary September 22, 2025 17:31
@ijjk ijjk added the tests label Sep 23, 2025
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch 3 times, most recently from ee0e0a2 to b0775d4 Compare September 25, 2025 16:41
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch from b0775d4 to e28585a Compare October 2, 2025 16:51
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch 2 times, most recently from f3b49ff to 924c512 Compare October 7, 2025 15:53
@lubieowoce lubieowoce changed the base branch from canary to graphite-base/84088 October 7, 2025 16:46
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch from 924c512 to f938b94 Compare October 7, 2025 16:46
@lubieowoce lubieowoce changed the base branch from graphite-base/84088 to lubieowoce/remove-promise-caching-in-cc October 7, 2025 16:46
@lubieowoce lubieowoce force-pushed the lubieowoce/remove-promise-caching-in-cc branch from 3820ad4 to 3c985b0 Compare October 8, 2025 12:03
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch from f938b94 to a971814 Compare October 8, 2025 12:03
@lubieowoce lubieowoce changed the base branch from lubieowoce/remove-promise-caching-in-cc to graphite-base/84088 October 8, 2025 12:17
@lubieowoce lubieowoce force-pushed the graphite-base/84088 branch from 3c985b0 to e0f676b Compare October 8, 2025 12:17
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch from a971814 to d6d3e41 Compare October 8, 2025 12:17
@lubieowoce lubieowoce changed the base branch from graphite-base/84088 to canary October 8, 2025 12:17
@lubieowoce lubieowoce changed the title [Cache Components] restart render on cache miss in dev [Cache Components] restart dev render on cache miss Oct 8, 2025
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch 2 times, most recently from e05eb13 to 06d3719 Compare October 8, 2025 13:56
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch 2 times, most recently from 422be96 to 9791743 Compare October 9, 2025 13:02
@lubieowoce lubieowoce changed the title [Cache Components] restart dev render on cache miss [Cache Components] Dev - restart render on cache miss Oct 9, 2025
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch from 8338248 to 4c624e2 Compare October 9, 2025 15:28
@lubieowoce lubieowoce force-pushed the lubieowoce/restart-on-cache-miss branch from 4c624e2 to 06765ee Compare October 9, 2025 18:24
@lubieowoce lubieowoce marked this pull request as ready for review October 9, 2025 18:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CI Bypass Graphite Optimization Ignore Graphite CI optimizations, run the full CI suite. https://graphite.dev/docs/stacking-and-ci created-by: Next.js team PRs by the Next.js team. tests type: next
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants